Merge branch 'MDL-75826-401' of https://github.com/meirzamoodle/moodle into MOODLE_401_STABLE

This commit is contained in:
Andrew Nicols 2022-11-30 13:35:56 +08:00 committed by Ilya Tregubov
commit b00f1464a8

View File

@ -311,6 +311,9 @@ if ($userform->is_cancelled()) {
} else {
redirect($returnurl, get_string('changessaved'), null, \core\output\notification::NOTIFY_SUCCESS);
}
} else if ($returnto === 'profile') {
\core\session\manager::gc(); // Remove stale sessions.
redirect($returnurl, get_string('changessaved'), null, \core\output\notification::NOTIFY_SUCCESS);
} else {
\core\session\manager::gc(); // Remove stale sessions.
redirect("$CFG->wwwroot/$CFG->admin/user.php", get_string('changessaved'), null, \core\output\notification::NOTIFY_SUCCESS);