From 32aa48ea13acca308ebaf79d54e9eb2909e5eae0 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Fri, 8 Jul 2005 11:48:47 +0000 Subject: Bug 298659: setting authentication to LDAP,DB fails Patch By A. Karl Kornel r=glob, a=justdave --- Bugzilla/Auth/Login/WWW/CGI.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Auth/Login') 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) { -- cgit v1.2.3-24-g4f1b