mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 04:22:07 +02:00
MDL-56093 auth_db: Save custom profile fields in auth_db
This commit is contained in:
parent
f61ee4e857
commit
c19ef03f71
@ -473,6 +473,12 @@ class auth_plugin_db extends auth_plugin_base {
|
||||
set_user_preference('auth_forcepasswordchange', 1, $id);
|
||||
set_user_preference('create_password', 1, $id);
|
||||
}
|
||||
|
||||
// Save custom profile fields here(MDL-56093).
|
||||
require_once($CFG->dirroot . '/user/profile/lib.php');
|
||||
$user->id = $id;
|
||||
profile_save_data($user);
|
||||
|
||||
// Make sure user context is present.
|
||||
context_user::instance($id);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user