From e72966bac14ae0c808fd7ffa56f7f2fab10a6c75 Mon Sep 17 00:00:00 2001 From: "bbaetz%acm.org" <> Date: Sat, 5 Apr 2003 10:21:54 +0000 Subject: Bug 200072 - Creating new users from LDAP at authentication time is broken r,a=justdave --- Bugzilla/Auth/LDAP.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Bugzilla/Auth') 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; } -- cgit v1.2.3-24-g4f1b