MDL-75826 profile: Redirect to profile page if returnto is profile.

This commit is contained in:
Meirza 2022-11-18 18:36:13 +07:00
parent 0ea3d45e04
commit fb5a3dd643

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);