mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 04:22:07 +02:00
MDL-27107 auth_mnet - consider all incoming roaming users as confirmed
The 'confirmed' field can't be optional. If the identity provider did not export it, the new remote user would be created with 'confirmed' set to default zero and as such could be a subject of scheduled deletion.
This commit is contained in:
parent
4ad6128920
commit
a014e3bcd8
@ -276,6 +276,7 @@ class auth_plugin_mnet extends auth_plugin_base {
|
||||
*/
|
||||
$remoteuser->mnethostid = $remotehost->id;
|
||||
$remoteuser->firstaccess = time(); // First time user in this server, grab it here
|
||||
$remoteuser->confirmed = 1;
|
||||
|
||||
$remoteuser->id = $DB->insert_record('user', $remoteuser);
|
||||
$firsttime = true;
|
||||
|
@ -586,6 +586,7 @@ function mnet_profile_field_options() {
|
||||
'timemodified', // will be set to relative to the host anyway
|
||||
'auth', // going to be set to 'mnet'
|
||||
'deleted', // we should never get deleted users sent over, but don't send this anyway
|
||||
'confirmed', // unconfirmed users can't log in to their home site, all remote users considered confirmed
|
||||
'password', // no password for mnet users
|
||||
'theme', // handled separately
|
||||
'lastip', // will be set to relative to the host anyway
|
||||
@ -610,7 +611,6 @@ function mnet_profile_field_options() {
|
||||
'username',
|
||||
'email',
|
||||
'auth',
|
||||
'confirmed',
|
||||
'deleted',
|
||||
'firstname',
|
||||
'lastname',
|
||||
|
Loading…
x
Reference in New Issue
Block a user