Bug 200072 - Creating new users from LDAP at authentication time is broken

r,a=justdave


git-svn-id: svn://10.0.0.236/trunk@140738 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bbaetz%acm.org
2003-04-05 02:21:54 +00:00
parent 4ce36801bf
commit 9ee97de1d8

View 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;
}