From: lpsolit%gmail.com <> Date: Sun, 22 May 2005 21:27:51 +0000 (+0000) Subject: Bug 215320: Change several bugs at once causes extraneous messages in apache log... X-Git-Tag: bugzilla-2.18.2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=120915f46c2a2684ccc77161a7e2eb74a78ca621;p=thirdparty%2Fbugzilla.git Bug 215320: Change several bugs at once causes extraneous messages in apache log file - Patch by Frédéric Buclin r=kiko a=justdave --- diff --git a/process_bug.cgi b/process_bug.cgi index 61270c4675..36651fa1a5 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -393,8 +393,10 @@ sub CheckCanChangeField { elsif (trim($oldvalue) eq trim($newvalue)) { return 1; # numeric fields need to be compared using == - } elsif (($field eq "estimated_time" || $field eq "remaining_time") && - $oldvalue == $newvalue) { + } elsif (($field eq "estimated_time" || $field eq "remaining_time") + && $newvalue ne $::FORM{'dontchange'} + && $oldvalue == $newvalue) + { return 1; }