diff options
author | lpsolit%gmail.com <> | 2005-05-22 23:19:23 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-05-22 23:19:23 +0200 |
commit | 58fd8500cc2db7c6f8c804638cf65e958fd2cf1d (patch) | |
tree | 72738f077245642d9aee2fdf96a093099edb1e15 | |
parent | 9e7eab5037ebe808f5344aa5376fbe65529c553d (diff) | |
download | bugzilla-58fd8500cc2db7c6f8c804638cf65e958fd2cf1d.tar.gz bugzilla-58fd8500cc2db7c6f8c804638cf65e958fd2cf1d.tar.xz |
Bug 215320: Change several bugs at once causes extraneous messages in apache log file - Patch by Frédéric Buclin <LpSolit@gmail.com> r=kiko a=justdave
-rwxr-xr-x | process_bug.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index c000e3a4a..b9dab876a 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -402,6 +402,7 @@ sub CheckCanChangeField { return 1; # numeric fields need to be compared using == } elsif (($field eq "estimated_time" || $field eq "remaining_time") + && $newvalue ne $cgi->param('dontchange') && $oldvalue == $newvalue) { return 1; |