2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / BugsSite / relogin.cgi
blob7c1ffe6f8aeecf75d103dbd1976c03a6d8de896a
1 #!/usr/bin/perl -wT
2 # -*- Mode: perl; indent-tabs-mode: nil -*-
4 # The contents of this file are subject to the Mozilla Public
5 # License Version 1.1 (the "License"); you may not use this file
6 # except in compliance with the License. You may obtain a copy of
7 # the License at http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS
10 # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
11 # implied. See the License for the specific language governing
12 # rights and limitations under the License.
14 # The Original Code is the Bugzilla Bug Tracking System.
16 # The Initial Developer of the Original Code is Netscape Communications
17 # Corporation. Portions created by Netscape are
18 # Copyright (C) 1998 Netscape Communications Corporation. All
19 # Rights Reserved.
21 # Contributor(s): Terry Weissman <terry@mozilla.org>
22 # Gervase Markham <gerv@gerv.net>
24 use strict;
26 use vars qw($template $vars);
28 use lib qw(.);
30 use Bugzilla::Constants;
31 require "CGI.pl";
33 # We don't want to remove a random logincookie from the db, so
34 # call Bugzilla->login(). If we're logged in after this, then
35 # the logincookie must be correct
36 Bugzilla->login(LOGIN_OPTIONAL);
38 Bugzilla->logout();
40 my $cgi = Bugzilla->cgi;
41 print $cgi->header();
43 $vars->{'message'} = "logged_out";
44 $template->process("global/message.html.tmpl", $vars)
45 || ThrowTemplateError($template->error());
47 exit;