Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!8581
Resolve
#3456738
"Combined bc fixes for break in login auth changes from
#3444978
"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Resolve
#3456738
"Combined bc fixes for break in login auth changes from
#3444978
"
issue/drupal-3456738:3456738-combined_bc_fixes
into
10.3.x
Overview
9
Commits
5
Pipelines
3
Changes
8
1 unresolved thread
Hide all comments
Closed
Conrad Lara
requested to merge
issue/drupal-3456738:3456738-combined_bc_fixes
into
10.3.x
9 months ago
Overview
9
Commits
5
Pipelines
3
Changes
8
1 unresolved thread
Hide all comments
Expand
Closes
#3456738
Co-authored-by: Julian Pustkuchen <
3110-Anybody@users.noreply.drupalcode.org
>
0
0
Merge request reports
Compare
10.3.x
version 2
e495202d
8 months ago
version 1
b1eb471b
9 months ago
10.3.x (base)
and
latest version
latest version
99b5f7f7
5 commits,
8 months ago
version 2
e495202d
4 commits,
8 months ago
version 1
b1eb471b
3 commits,
9 months ago
8 files
+
144
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
core/modules/user/src/Controller/UserAuthenticationController.php
+
1
−
1
Options
@@ -201,7 +201,7 @@ public function login(Request $request) {
$authenticated
=
$this
->
userAuth
->
authenticateAccount
(
$account
,
$credentials
[
'pass'
])
?
$account
->
id
()
:
FALSE
;
}
else
{
$authenticated
=
$this
->
userAuth
->
authenticate
Account
(
$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