summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-12-07 02:09:53 +0100
committerterry%mozilla.org <>1999-12-07 02:09:53 +0100
commit0e1b77bfa5defc91dd29fb86ec5f53646f4abe93 (patch)
treeb713e747364fee5cc816f5bcdf5727d28b564294 /CGI.pl
parent0a8567206978a9d79d356f425d3464cec0cc44a0 (diff)
downloadbugzilla-0e1b77bfa5defc91dd29fb86ec5f53646f4abe93.tar.gz
bugzilla-0e1b77bfa5defc91dd29fb86ec5f53646f4abe93.tar.xz
Don't do dmose's paranoid checking of option values in the query page.
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index 69a67b36b..a5a4b3b1e 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -270,6 +270,8 @@ sub navigation_header {
}
+$::CheckOptionValues = 1;
+
sub make_options {
my ($src,$default,$isregexp) = (@_);
my $last = "";
@@ -294,7 +296,7 @@ sub make_options {
}
}
if (!$found && $default ne "") {
- if ( Param("strictvaluechecks") &&
+ if ( Param("strictvaluechecks") && $::CheckOptionValues &&
($default ne $::dontchange) && ($default ne "-All-") &&
($default ne "DUPLICATE") ) {
print "Possible bug database corruption has been detected. " .