diff options
author | mkanat%kerio.com <> | 2005-07-08 13:48:47 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-07-08 13:48:47 +0200 |
commit | 32aa48ea13acca308ebaf79d54e9eb2909e5eae0 (patch) | |
tree | b9cf0b35679cb40cd078f63f5cb428cccff0d6fe /Bugzilla/Auth | |
parent | b4e43c114a4c5a71578092ba989f173c2c653c05 (diff) | |
download | bugzilla-32aa48ea13acca308ebaf79d54e9eb2909e5eae0.tar.gz bugzilla-32aa48ea13acca308ebaf79d54e9eb2909e5eae0.tar.xz |
Bug 298659: setting authentication to LDAP,DB fails
Patch By A. Karl Kornel <karl@kornel.name> r=glob, a=justdave
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r-- | Bugzilla/Auth/Login/WWW/CGI.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Auth/Login/WWW/CGI.pm b/Bugzilla/Auth/Login/WWW/CGI.pm index d117aef47..00d5e382a 100644 --- a/Bugzilla/Auth/Login/WWW/CGI.pm +++ b/Bugzilla/Auth/Login/WWW/CGI.pm @@ -53,8 +53,8 @@ sub login { $cgi->delete('Bugzilla_login', 'Bugzilla_password'); - my $authmethod = Param("user_verify_class"); - my ($authres, $userid, $extra, $info) = + # Perform the actual authentication, get the method name from the class name + my ($authmethod, $authres, $userid, $extra, $info) = Bugzilla::Auth->authenticate($username, $passwd); if ($authres == AUTH_OK) { |