Index: admin/auth_config.php =================================================================== RCS file: /cvsroot/moodle/moodle/admin/auth_config.php,v retrieving revision 1.12.2.4 diff -u -r1.12.2.4 auth_config.php --- admin/auth_config.php 26 Mar 2008 02:26:25 -0000 1.12.2.4 +++ admin/auth_config.php 6 Apr 2008 01:40:12 -0000 @@ -50,7 +50,9 @@ $frm = get_config("auth/$auth"); } -$user_fields = array("firstname", "lastname", "email", "phone1", "phone2", "institution", "department", "address", "city", "country", "description", "idnumber", "lang"); +$user_fields = array("firstname", "lastname", "email", "url", "phone1", "phone2", + "institution", "department", "address", "city", "country", + "description", "idnumber", "lang"); /// Get the auth title (from core or own auth lang files) $authtitle = $authplugin->get_title(); @@ -133,6 +135,8 @@ $fieldname = $field; if ($fieldname === 'lang') { $fieldname = get_string('language'); + } elseif ($fieldname === 'url') { + $fieldname = get_string('webpage'); } elseif (preg_match('/^(.+?)(\d+)$/', $fieldname, $matches)) { $fieldname = get_string($matches[1]) . ' ' . $matches[2]; } else { Index: auth/db/auth.php =================================================================== RCS file: /cvsroot/moodle/moodle/auth/db/auth.php,v retrieving revision 1.21.2.1 diff -u -r1.21.2.1 auth.php --- auth/db/auth.php 27 Jan 2008 20:05:29 -0000 1.21.2.1 +++ auth/db/auth.php 5 Apr 2008 22:21:46 -0000 @@ -132,9 +132,9 @@ * @return array */ function db_attributes() { - $fields = array("firstname", "lastname", "email", "phone1", "phone2", - "department", "address", "city", "country", "description", - "idnumber", "lang" ); + $fields = array("firstname", "lastname", "email", "url", "phone1", "phone2", + "institution", "department", "address", "city", "country", + "description", "idnumber", "lang" ); $moodleattributes = array(); foreach ($fields as $field) { if (!empty($this->config->{"field_map_$field"})) {