From 6396d46e5a1774f0e33e13738875a3109e662d46 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 21 Jan 2000 05:36:20 +0000 Subject: 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). --- CGI.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- cgit v1.2.3-24-g4f1b