From ec38a93e110be22f7316871994f91dc53712bcd2 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Thu, 15 Nov 2007 04:50:24 +0000 Subject: Bug 183665: Accessing post_bug.cgi directly gives a weird error message and should redirect to enter_bug.cgi instead - Patch by Matt Tasker (based on the original patch from victory ) r/a=LpSolit --- Bugzilla/Auth/Login/CGI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Auth') diff --git a/Bugzilla/Auth/Login/CGI.pm b/Bugzilla/Auth/Login/CGI.pm index 2a61a54f7..980e27123 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'); + $cgi->delete('Bugzilla_login', 'Bugzilla_password', 'GoAheadAndLogIn'); if (!defined $username || !defined $password) { return { failure => AUTH_NODATA }; -- cgit v1.2.3-24-g4f1b