Commit 6396d46e authored by terry%mozilla.org's avatar terry%mozilla.org

Don't try to put out the footer if we're shutdown (as that can try to access the…

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).
parent 78865fda
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment