mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-19269 Deleted internal auth users - handling is buggy; credit Martin Langhoff
This commit is contained in:
parent
64521d31ac
commit
6d7fa5d8d8
@ -3493,14 +3493,15 @@ function authenticate_user_login($username, $password) {
|
||||
error_log('[client '.getremoteaddr()."] $CFG->wwwroot Disabled Login: $username ".$_SERVER['HTTP_USER_AGENT']);
|
||||
return false;
|
||||
}
|
||||
if (!empty($user->deleted)) {
|
||||
add_to_log(0, 'login', 'error', 'index.php', $username);
|
||||
error_log('[client '.getremoteaddr()."] $CFG->wwwroot Deleted Login: $username ".$_SERVER['HTTP_USER_AGENT']);
|
||||
return false;
|
||||
}
|
||||
$auths = array($auth);
|
||||
|
||||
} else {
|
||||
// check if there's a deleted record (cheaply)
|
||||
if ($DB->get_field('user', 'id', array('username'=>$username, 'deleted'=>1))) {
|
||||
error_log('[client '.$_SERVER['REMOTE_ADDR']."] $CFG->wwwroot Deleted Login: $username ".$_SERVER['HTTP_USER_AGENT']);
|
||||
return false;
|
||||
}
|
||||
|
||||
$auths = $authsenabled;
|
||||
$user = new object();
|
||||
$user->id = 0; // User does not exist
|
||||
|
Loading…
x
Reference in New Issue
Block a user