]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Don't try to put out the footer if we're shutdown (as that can try to access the...
authorterry%mozilla.org <>
Fri, 21 Jan 2000 05:36:20 +0000 (05:36 +0000)
committerterry%mozilla.org <>
Fri, 21 Jan 2000 05:36:20 +0000 (05:36 +0000)
CGI.pl

diff --git a/CGI.pl b/CGI.pl
index 7a90130c6804e956420e1e352ae4d0dd7621baa2..03396142441b8e764ce0f40d792a1188f0534530 100644 (file)
--- 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;
         }
     }