diff --git a/mozilla/webtools/bugzilla/Bugzilla/Auth/LDAP.pm b/mozilla/webtools/bugzilla/Bugzilla/Auth/LDAP.pm index 4570bdde974..8d2f03fbcb2 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Auth/LDAP.pm +++ b/mozilla/webtools/bugzilla/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; }