summaryrefslogtreecommitdiffstats
path: root/relogin.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'relogin.cgi')
-rwxr-xr-xrelogin.cgi18
1 files changed, 6 insertions, 12 deletions
diff --git a/relogin.cgi b/relogin.cgi
index d3023c850..3bab9fdc5 100755
--- a/relogin.cgi
+++ b/relogin.cgi
@@ -57,18 +57,12 @@ Set-Cookie: Bugzilla_logincookie= ; path=$cookiepath; expires=Sun, 30-Jun-80 00:
delete $::COOKIE{"Bugzilla_login"};
- $vars->{'title'} = "Logged Out";
- $vars->{'message'} = "<b>Your login has been forgotten</b>.
- The cookie that was remembering your login is
- now gone. You will be prompted for a login the
- next time it is required.";
- $vars->{'url'} = "query.cgi?GoAheadAndLogIn=1";
- $vars->{'link'} = "Log in again here";
- $vars->{'user'} = {};
-
- print "Content-Type: text/html\n\n";
- $template->process("global/message.html.tmpl", $vars)
- || ThrowTemplateError($template->error());
+$vars->{'message'} = "logged_out";
+$vars->{'user'} = {};
+
+print "Content-Type: text/html\n\n";
+$template->process("global/message.html.tmpl", $vars)
+ || ThrowTemplateError($template->error());
exit;