From: terry%mozilla.org <> Date: Fri, 21 Jan 2000 05:36:20 +0000 (+0000) Subject: Don't try to put out the footer if we're shutdown (as that can try to access the... X-Git-Tag: bugzilla-2.12~448 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6396d46e5a1774f0e33e13738875a3109e662d46;p=thirdparty%2Fbugzilla.git 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). --- diff --git a/CGI.pl b/CGI.pl index 7a90130c68..0339614244 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; } }