Index: admin/settings/security.php =================================================================== RCS file: /cvsroot/moodle/moodle/admin/settings/security.php,v retrieving revision 1.12 diff -u -r1.12 security.php --- admin/settings/security.php 4 Dec 2006 09:13:52 -0000 1.12 +++ admin/settings/security.php 18 Jan 2007 23:41:35 -0000 @@ -24,6 +24,9 @@ 'firstname lastname' => get_string('firstname') . ' + ' . get_string('lastname'), 'lastname firstname' => get_string('lastname') . ' + ' . get_string('firstname'), 'firstname' => get_string('firstname')))); +$temp->add(new admin_setting_configselect('fullnameorder', get_string('fullnameorder', 'admin'), get_string('configfullnameorder', 'admin'),'firstname lastname', + array('firstname lastname' => get_string('firstname') . ' >> ' . get_string('lastname'), + 'lastname firstname' => get_string('lastname') . ' >> ' . get_string('firstname')))); $temp->add(new admin_setting_configcheckbox('extendedusernamechars', get_string('extendedusernamechars', 'admin'), get_string('configextendedusernamechars', 'admin'), 0)); $temp->add(new admin_setting_configtext('sitepolicy', get_string('sitepolicy', 'admin'), get_string('configsitepolicy', 'admin'), '', PARAM_URL)); $temp->add(new admin_setting_configselect('bloglevel', get_string('bloglevel', 'admin'), get_string('configbloglevel', 'admin'), 4, array(5 => get_string('worldblogs','blog'), Index: lang/en_utf8/admin.php =================================================================== RCS file: /cvsroot/moodle/moodle/lang/en_utf8/admin.php,v retrieving revision 1.96 diff -u -r1.96 admin.php --- lang/en_utf8/admin.php 16 Jan 2007 03:28:58 -0000 1.96 +++ lang/en_utf8/admin.php 18 Jan 2007 23:47:42 -0000 @@ -101,6 +101,7 @@ $string['configfrontpage'] = 'The items selected above will be displayed on the site\'s front page.'; $string['configfrontpageloggedin'] = 'The items selected above will be displayed on the site\'s front page when a user is logged in.'; $string['configfullnamedisplay'] = 'This defines how names are shown when they are displayed in full. For most mono-lingual sites the most efficient setting is the default \"Given names + Surname\", but you may choose to hide surnames altogether, or to leave it up to the current language pack to decide (some languages have different conventions).'; +$string['configfullnameorder'] = 'This defines how names are orderd when they are displayed in forms. For most mono-lingual sites the most efficient setting is the default \"First name >> Surname\", but you may choose \"Surname >> First name\" up to the current language environment.'; $string['configgdversion'] = 'Indicate the version of GD that is installed. The version shown by default is the one that has been auto-detected. Don\'t change this unless you really know what you\'re doing.'; $string['configgradebookroles'] = 'This setting allows you to control who appears on the gradebook. Users need to have at least one of these roles in a course to be shown in the gradebook for that course.'; $string['confighiddenuserfields'] = 'Select which user infomation fields you wish to hide from other users other than course teachers/admins. This will increase student privacy. Hold CTRL key to select multiple fields.'; @@ -280,6 +281,7 @@ $string['frontpage'] = 'Front Page'; $string['frontpageloggedin'] = 'Front page items when logged in'; $string['fullnamedisplay'] = 'Full Name Format'; +$string['fullnameorder'] = 'Full Name Input Order'; $string['gdversion'] = 'GD version'; $string['generalsettings'] = 'General settings'; $string['globalsquoteswarning'] = '
Security Warning: to operate properly, Moodle requires
that you make certain changes to your current PHP settings.
You must set register_globals=off and/or magic_quotes_gpc=on.
If possible, you should set register_globals=off to improve general
server security, setting magic_quotes_gpc=on is also recommended.
These settings are controlled by editing your php.ini, Apache/IIS
configuration or .htaccess file.