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

r,a=justdave
This commit is contained in:
bbaetz%acm.org 2003-04-05 02:21:54 +00:00
Родитель 5d6a45aa87
Коммит f1bde96d7b
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

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