diff --git a/main/mySpace/user_import.php b/main/mySpace/user_import.php index 05cf414428..3268ad22ca 100755 --- a/main/mySpace/user_import.php +++ b/main/mySpace/user_import.php @@ -126,8 +126,8 @@ $form->addElement('file', 'import_file', get_lang('ImportFileLocation')); $form->addRule('import_file', get_lang('ThisFieldIsRequired'), 'required'); $allowed_file_types = array ('xml', 'csv'); $form->addRule('import_file', get_lang('InvalidExtension').' ('.implode(',', $allowed_file_types).')', 'filetype', $allowed_file_types); -$form->addElement('radio', 'file_type', get_lang('FileType'), 'XML ('.get_lang('ExampleXMLFile').')', 'xml'); -$form->addElement('radio', 'file_type', null, 'CSV ('.get_lang('ExampleCSVFile').')', 'csv'); +$form->addElement('radio', 'file_type', get_lang('FileType'), 'XML ('.get_lang('ExampleXMLFile').')', 'xml'); +$form->addElement('radio', 'file_type', null, 'CSV ('.get_lang('ExampleCSVFile').')', 'csv'); $form->addElement('radio', 'sendMail', get_lang('SendMailToUsers'), get_lang('Yes'), 1); $form->addElement('radio', 'sendMail', null, get_lang('No'), 0); $form->addElement('submit', 'submit', get_lang('Ok'));