]> git.mjollnir.org Git - moodle.git/commitdiff
"MDL-15031, fix order of the user fields, see tracker, merged from MOODLE_19_STABLE"
authordongsheng <dongsheng>
Wed, 28 May 2008 07:41:23 +0000 (07:41 +0000)
committerdongsheng <dongsheng>
Wed, 28 May 2008 07:41:23 +0000 (07:41 +0000)
lib/authlib.php

index 70fa379959b77bf4bd2c07bdd9e9ddca62c513ec..dc63a5e8b6e71d1c700318a2425d18dbfee31207 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php  // $Id$
 /**
  * @author Martin Dougiamas
  * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
@@ -59,11 +59,23 @@ class auth_plugin_base {
     var $authtype;
     /*
      * The fields we can lock and update from/to external authentication backends
-     *
      */
-    var $userfields = array("firstname", "lastname", "email", "phone1", "phone2", 
-            "institution", "department", "address", "city", "country", 
-            "description", "idnumber", "lang", "url");
+    var $userfields = array(
+        'firstname',
+        'lastname',
+        'email',
+        'city',
+        'country',
+        'lang',
+        'description',
+        'url',
+        'idnumber',
+        'institution',
+        'department',
+        'phone1',
+        'phone2',
+        'address'
+    );
 
     /**