diff options
author | 2013-10-17 14:00:18 +0800 | |
---|---|---|
committer | 2013-10-17 14:00:18 +0800 | |
commit | 3ac1c96dd54289eea591f7c7d3aeb0a57ac6ec8a (patch) | |
tree | dbeab443bdfa4705088c8c4f77b6b70453e490e7 /process_bug.cgi | |
parent | Bump version to 4.5.1 (diff) | |
download | bugzilla-3ac1c96dd54289eea591f7c7d3aeb0a57ac6ec8a.tar.gz bugzilla-3ac1c96dd54289eea591f7c7d3aeb0a57ac6ec8a.tar.bz2 bugzilla-3ac1c96dd54289eea591f7c7d3aeb0a57ac6ec8a.zip |
Bug 927570: mid-air conflict fails to check all changed fields
r=dkl, a=simon
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 2944e6cf5..19880fe7d 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -136,8 +136,10 @@ if ($delta_ts) { if (!$do_midair) { foreach my $operation (@{ $vars->{'operations'} }) { foreach my $change (@{ $operation->{'changes'} }) { - $do_midair = 1 if $change->{'fieldname'} ne 'cc'; - last; + if ($change->{'fieldname'} ne 'cc') { + $do_midair = 1; + last; + } } last if $do_midair; } |