diff options
author | dmose%mozilla.org <> | 1999-12-03 08:56:07 +0100 |
---|---|---|
committer | dmose%mozilla.org <> | 1999-12-03 08:56:07 +0100 |
commit | 69b0cad73f81af9cb0ba125fae6bdcddc6a294aa (patch) | |
tree | b59f6c680666b56ab2e1555898ef33e9cd97fde8 | |
parent | 054be7c4ef0b5ace9155df00654b48fafd137a3a (diff) | |
download | bugzilla-69b0cad73f81af9cb0ba125fae6bdcddc6a294aa.tar.gz bugzilla-69b0cad73f81af9cb0ba125fae6bdcddc6a294aa.tar.xz |
special cased DUPLICATE in the make_options() sanity-checking code
-rw-r--r-- | CGI.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 " . |