summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Auth
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-07-08 13:48:47 +0200
committermkanat%kerio.com <>2005-07-08 13:48:47 +0200
commit32aa48ea13acca308ebaf79d54e9eb2909e5eae0 (patch)
treeb9cf0b35679cb40cd078f63f5cb428cccff0d6fe /Bugzilla/Auth
parentb4e43c114a4c5a71578092ba989f173c2c653c05 (diff)
downloadbugzilla-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.pm4
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) {