summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Auth
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r--Bugzilla/Auth/LDAP.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Auth/LDAP.pm b/Bugzilla/Auth/LDAP.pm
index 4570bdde9..8d2f03fbc 100644
--- a/Bugzilla/Auth/LDAP.pm
+++ b/Bugzilla/Auth/LDAP.pm
@@ -138,9 +138,9 @@ sub authenticate {
}
&::InsertNewUser($username, $userRealName);
- my ($userid, $disabledtext) = $dbh->selectrow_array($sth,
- undef,
- $username);
+ ($userid, $disabledtext) = $dbh->selectrow_array($sth,
+ undef,
+ $username);
return (AUTH_ERROR, $userid, "no_userid")
unless $userid;
}