diff options
author | lpsolit%gmail.com <> | 2007-11-15 05:50:24 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-11-15 05:50:24 +0100 |
commit | ec38a93e110be22f7316871994f91dc53712bcd2 (patch) | |
tree | 2c0a767ed7282f85b3fe92c4fb6b9c1f72389c9d /Bugzilla/Auth | |
parent | 297024e7c3f8792a39ac05db857c0aeb6069a794 (diff) | |
download | bugzilla-ec38a93e110be22f7316871994f91dc53712bcd2.tar.gz bugzilla-ec38a93e110be22f7316871994f91dc53712bcd2.tar.xz |
Bug 183665: Accessing post_bug.cgi directly gives a weird error message and should redirect to enter_bug.cgi instead - Patch by Matt Tasker <mtasker@gmail.com> (based on the original patch from victory <spam@bmo2007.rsz.jp>) r/a=LpSolit
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r-- | Bugzilla/Auth/Login/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 }; |