From: terry%mozilla.org <> Date: Tue, 7 Dec 1999 01:09:53 +0000 (+0000) Subject: Don't do dmose's paranoid checking of option values in the query page. X-Git-Tag: bugzilla-2.12~498 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e1b77bfa5defc91dd29fb86ec5f53646f4abe93;p=thirdparty%2Fbugzilla.git Don't do dmose's paranoid checking of option values in the query page. --- diff --git a/CGI.pl b/CGI.pl index 69a67b36b2..a5a4b3b1e3 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. " . diff --git a/query.cgi b/query.cgi index c7d49ace89..5cb40f147f 100755 --- a/query.cgi +++ b/query.cgi @@ -26,6 +26,11 @@ use strict; require "CGI.pl"; +$::CheckOptionValues = 0; # It's OK if we have some bogus things in the + # pop-up lists here, from a remembered query + # that is no longer quite valid. We don't + # want to crap out in the query page. + # Shut up misguided -w warnings about "used only once": use vars @::legal_resolution,