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:
skodak 2009-02-07 22:55:05 +00:00
parent a91557ae6f
commit 450dcc603d

View File

@ -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 = "";
}