]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 200072 - Creating new users from LDAP at authentication time is broken
authorbbaetz%acm.org <>
Sat, 5 Apr 2003 10:21:54 +0000 (10:21 +0000)
committerbbaetz%acm.org <>
Sat, 5 Apr 2003 10:21:54 +0000 (10:21 +0000)
r,a=justdave

Bugzilla/Auth/LDAP.pm

index 4570bdde974805a746b55ae97e93cb67e6ea7b3d..8d2f03fbcb2ad21a254a0aa65aa8b805b1f5458c 100644 (file)
@@ -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;
     }