diff options
author | terry%mozilla.org <> | 2000-01-18 22:41:00 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-18 22:41:00 +0000 |
commit | 45966a66789b8c452ff826aab8cc521e786bb87a (patch) | |
tree | 0957867dd019c781010fcbd5b6e91b35ba27aa61 /relogin.cgi | |
parent | Stop ever using perl's crypt() function; only use mysql's. (Using (diff) | |
download | bugzilla-45966a66789b8c452ff826aab8cc521e786bb87a.tar.gz bugzilla-45966a66789b8c452ff826aab8cc521e786bb87a.tar.bz2 bugzilla-45966a66789b8c452ff826aab8cc521e786bb87a.zip |
Footer wasn't displaying new state after clicking "log out".
Diffstat (limited to 'relogin.cgi')
-rwxr-xr-x | relogin.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/relogin.cgi b/relogin.cgi index 4bfc133d5..a179bafb7 100755 --- a/relogin.cgi +++ b/relogin.cgi @@ -23,6 +23,8 @@ use diagnostics; use strict; +use vars %::COOKIE; + require "CGI.pl"; @@ -40,6 +42,8 @@ do an action that requires a login, you will be prompted for it. <p> "; +delete $::COOKIE{"Bugzilla_login"}; + PutFooter(); exit; |