]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
special cased DUPLICATE in the make_options() sanity-checking code
authordmose%mozilla.org <>
Fri, 3 Dec 1999 07:56:07 +0000 (07:56 +0000)
committerdmose%mozilla.org <>
Fri, 3 Dec 1999 07:56:07 +0000 (07:56 +0000)
CGI.pl

diff --git a/CGI.pl b/CGI.pl
index c0201787b303e17a71616530d30b228f5d81e78a..69a67b36b217126d518076ad0779fc4c052c0418 100644 (file)
--- a/CGI.pl
+++ b/CGI.pl
@@ -295,7 +295,8 @@ sub make_options {
     }
     if (!$found && $default ne "") {
       if ( Param("strictvaluechecks") && 
-           ($default ne $::dontchange) && ($default ne "-All-") ) {
+           ($default ne $::dontchange) && ($default ne "-All-") &&
+           ($default ne "DUPLICATE") ) {
         print "Possible bug database corruption has been detected.  " .
               "Please send mail to " . Param("maintainer") . " with " .
               "details of what you were doing when this message " .