]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 232155: Remove uninitialized value warning from Pperl's Cookie.pm and...
authorjocuri%softhome.net <>
Thu, 21 Oct 2004 03:58:45 +0000 (03:58 +0000)
committerjocuri%softhome.net <>
Thu, 21 Oct 2004 03:58:45 +0000 (03:58 +0000)
Bugzilla/Auth/Login/WWW/CGI.pm

index 6b1761959d41b87df39d4a76569ecd195aacb86a..a66ce7425b5bc6814bd353585e98ea27d755d2e1 100644 (file)
@@ -92,7 +92,6 @@ sub login {
                               -value => $userid);
             $cgi->send_cookie(-name => 'Bugzilla_logincookie',
                               -value => $logincookie);
-
         }
     }
     elsif ($authres == AUTH_NODATA) {
@@ -170,13 +169,7 @@ sub login {
 
     # The account may be disabled
     if ($authres == AUTH_DISABLED) {
-        # Clear the cookie
-
-        $cgi->send_cookie(-name => 'Bugzilla_login',
-                          -expires => "Tue, 15-Sep-1998 21:49:00 GMT");
-        $cgi->send_cookie(-name => 'Bugzilla_logincookie',
-                          -expires => "Tue, 15-Sep-1998 21:49:00 GMT");
-
+        clear_browser_cookies();
         # and throw a user error
         ThrowUserError("account_disabled",
                        {'disabled_reason' => $extra});
@@ -233,8 +226,10 @@ sub logout {
 sub clear_browser_cookies {
     my $cgi = Bugzilla->cgi;
     $cgi->send_cookie(-name => "Bugzilla_login",
+                      -value => "",
                       -expires => "Tue, 15-Sep-1998 21:49:00 GMT");
     $cgi->send_cookie(-name => "Bugzilla_logincookie",
+                      -value => "",
                       -expires => "Tue, 15-Sep-1998 21:49:00 GMT");
 }