summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-01-21 06:36:20 +0100
committerterry%mozilla.org <>2000-01-21 06:36:20 +0100
commit6396d46e5a1774f0e33e13738875a3109e662d46 (patch)
treebabe88ae3e35b49501eb00b02ed68f10620068b5 /CGI.pl
parent78865fda79e5b78288aafd75b531924c73b27883 (diff)
downloadbugzilla-6396d46e5a1774f0e33e13738875a3109e662d46.tar.gz
bugzilla-6396d46e5a1774f0e33e13738875a3109e662d46.tar.xz
Don't try to put out the footer if we're shutdown (as that can try to access the DB which we don't want).
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index 7a90130c6..033961424 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -31,6 +31,7 @@ use strict;
sub CGI_pl_sillyness {
my $zz;
$zz = %::FILENAME;
+ $zz = %::dontchange;
}
use CGI::Carp qw(fatalsToBrowser);
@@ -758,7 +759,6 @@ sub PutHeader {
if (Param("shutdownhtml")) {
if (!$ignoreshutdown) {
print Param("shutdownhtml");
- PutFooter();
exit;
}
}