diff options
author | terry%mozilla.org <> | 2000-01-21 06:36:20 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-21 06:36:20 +0100 |
commit | 6396d46e5a1774f0e33e13738875a3109e662d46 (patch) | |
tree | babe88ae3e35b49501eb00b02ed68f10620068b5 | |
parent | 78865fda79e5b78288aafd75b531924c73b27883 (diff) | |
download | bugzilla-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).
-rw-r--r-- | CGI.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } } |