From: lpsolit%gmail.com <> Date: Sun, 5 Oct 2008 01:04:50 +0000 (+0000) Subject: Partial backout of bug 183665. It's responsible for bug 457719 X-Git-Tag: bugzilla-3.2rc2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1dc06d1caacc75a571fa0facf354787ee184a20;p=thirdparty%2Fbugzilla.git Partial backout of bug 183665. It's responsible for bug 457719 --- diff --git a/Bugzilla/Auth/Login/CGI.pm b/Bugzilla/Auth/Login/CGI.pm index 9e008be82c..5be98aa7ac 100644 --- a/Bugzilla/Auth/Login/CGI.pm +++ b/Bugzilla/Auth/Login/CGI.pm @@ -45,7 +45,7 @@ sub get_login_info { my $username = trim($cgi->param("Bugzilla_login")); my $password = $cgi->param("Bugzilla_password"); - $cgi->delete('Bugzilla_login', 'Bugzilla_password', 'GoAheadAndLogIn'); + $cgi->delete('Bugzilla_login', 'Bugzilla_password'); if (!defined $username || !defined $password) { return { failure => AUTH_NODATA };