summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authordmose%mozilla.org <>1999-12-03 08:56:07 +0100
committerdmose%mozilla.org <>1999-12-03 08:56:07 +0100
commit69b0cad73f81af9cb0ba125fae6bdcddc6a294aa (patch)
treeb59f6c680666b56ab2e1555898ef33e9cd97fde8 /CGI.pl
parent054be7c4ef0b5ace9155df00654b48fafd137a3a (diff)
downloadbugzilla-69b0cad73f81af9cb0ba125fae6bdcddc6a294aa.tar.gz
bugzilla-69b0cad73f81af9cb0ba125fae6bdcddc6a294aa.tar.xz
special cased DUPLICATE in the make_options() sanity-checking code
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index c0201787b..69a67b36b 100644
--- 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 " .