MDL-42834 admin: Cleanup logic of login page only needed for loginhttps

This commit is contained in:
John Okely 2017-09-15 09:20:37 +08:00 committed by Mark Nelson
parent 4b501ec96b
commit ebc11ab3c6

View File

@ -30,13 +30,8 @@ require_once('lib.php');
redirect_if_major_upgrade_required();
$testsession = optional_param('testsession', 0, PARAM_INT); // test session works properly
$cancel = optional_param('cancel', 0, PARAM_BOOL); // redirect to frontpage, needed for loginhttps
$anchor = optional_param('anchor', '', PARAM_RAW); // Used to restore hash anchor to wantsurl.
if ($cancel) {
redirect(new moodle_url('/'));
}
$context = context_system::instance();
$PAGE->set_url("$CFG->httpswwwroot/login/index.php");
$PAGE->set_context($context);