Skip to content

Commit

Permalink
"MDL-15031, fix order of the user fields, see tracker"
Browse files Browse the repository at this point in the history
  • Loading branch information
dongsheng committed May 28, 2008
1 parent c9e47cd commit ee557b6
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions lib/authlib.php
@@ -1,4 +1,4 @@
<?php
<?php // $Id$
/**
* @author Martin Dougiamas
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
Expand Down Expand Up @@ -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'
);

/**
Expand Down

0 comments on commit ee557b6

Please sign in to comment.