Skip to content
Snippets Groups Projects

Resolve #3456738 "Combined bc fixes for break in login auth changes from #3444978"

Closed Resolve #3456738 "Combined bc fixes for break in login auth changes from #3444978"
1 unresolved thread
Closed Conrad Lara requested to merge issue/drupal-3456738:3456738-combined_bc_fixes into 10.3.x
1 unresolved thread
Files
8
@@ -201,7 +201,7 @@ public function login(Request $request) {
$authenticated = $this->userAuth->authenticateAccount($account, $credentials['pass']) ? $account->id() : FALSE;
}
else {
$authenticated = $this->userAuth->authenticateAccount($credentials['name'], $credentials['pass']);
$authenticated = $this->userAuth->authenticate($credentials['name'], $credentials['pass']);
}
if ($authenticated) {
$this->userFloodControl->clear('user.http_login', $this->getLoginFloodIdentifier($request, $credentials['name']));
Loading