From 399dbbb2ebea80d513f07002890a4f0b32ff47a4 Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" Date: Thu, 2 Dec 1999 23:56:07 +0000 Subject: [PATCH] special cased DUPLICATE in the make_options() sanity-checking code --- webtools/bugzilla/CGI.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webtools/bugzilla/CGI.pl b/webtools/bugzilla/CGI.pl index c0201787b30..69a67b36b21 100644 --- a/webtools/bugzilla/CGI.pl +++ b/webtools/bugzilla/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 " .