From 3ac1c96dd54289eea591f7c7d3aeb0a57ac6ec8a Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Thu, 17 Oct 2013 14:00:18 +0800 Subject: Bug 927570: mid-air conflict fails to check all changed fields r=dkl, a=simon --- process_bug.cgi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'process_bug.cgi') 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; } -- cgit v1.2.3-24-g4f1b