MDL-18138 added option to supply username as GET param - based on patch by Robert Allerstorfer; merged from MOODLE_19_STABLE
This commit is contained in:
+6
-1
@@ -256,7 +256,12 @@
|
||||
}
|
||||
|
||||
if (empty($frm->username) && $authsequence[0] != 'shibboleth') { // See bug 5184
|
||||
$frm->username = get_moodle_cookie() === 'nobody' ? '' : get_moodle_cookie();
|
||||
if (!empty($_GET["username"])) {
|
||||
$frm->username = $_GET["username"];
|
||||
} else {
|
||||
$frm->username = get_moodle_cookie() === 'nobody' ? '' : get_moodle_cookie();
|
||||
}
|
||||
|
||||
$frm->password = "";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user