summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-08-20 07:34:29 +0200
committergerv%gerv.net <>2002-08-20 07:34:29 +0200
commita1ba12e2936512aab4138815cde2b8c284362da5 (patch)
treedd637f233b9a55b70eb74bb77e9792060e73ac84 /CGI.pl
parentec2d9ac435c7863f203f53bdd0eefdeb17856c1a (diff)
downloadbugzilla-a1ba12e2936512aab4138815cde2b8c284362da5.tar.gz
bugzilla-a1ba12e2936512aab4138815cde2b8c284362da5.tar.xz
Bug 163331 - shutdownhtml is broken. Patch by gerv; r=bbaetz.
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl5
1 files changed, 1 insertions, 4 deletions
diff --git a/CGI.pl b/CGI.pl
index 76b88d452..b2316d555 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -61,10 +61,7 @@ use vars qw($template $vars);
# this message, of course, since it needs to be available in order for
# the administrator to open Bugzilla back up.
if (Param("shutdownhtml") && $0 !~ m:[\\/](do)?editparams.cgi$:) {
- # The shut down message we are going to display to the user.
- $::vars->{'title'} = "Bugzilla is Down";
- $::vars->{'h1'} = "Bugzilla is Down";
- $::vars->{'message'} = Param("shutdownhtml");
+ $::vars->{'message'} = "shutdown";
# Return the appropriate HTTP response headers.
print "Content-Type: text/html\n\n";