From: justdave%syndicomm.com <> Date: Wed, 15 Aug 2001 09:38:02 +0000 (+0000) Subject: Re-fix for bug 95082: allow syncshadowdb to continue to make queries while Bugzilla... X-Git-Tag: bugzilla-2.14~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c368a62f281af9d9b401ab465a4144ead0d82b03;p=thirdparty%2Fbugzilla.git Re-fix for bug 95082: allow syncshadowdb to continue to make queries while Bugzilla is shut down. Patch by Jake Steenhagen r= justdave@syndicomm.com --- diff --git a/globals.pl b/globals.pl index f413974517..9c0410573f 100644 --- a/globals.pl +++ b/globals.pl @@ -202,7 +202,7 @@ sub SendSQL { } # If we are shutdown, we don't want to run queries except in special cases if (Param('shutdownhtml')) { - if ($0 =~ m:[\\/](do)?editparams.cgi$:) { + if ($0 =~ m:[\\/]((do)?editparams.cgi|syncshadowdb)$:) { $::ignorequery = 0; } else { $::ignorequery = 1;