"MDL-15031, fix order of the user fields, see tracker"

This commit is contained in:
dongsheng
2008-05-28 07:39:52 +00:00
parent c9e47cd096
commit ee557b6f4d
+17 -5
View 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'
);
/**