From f19b1b0a556468b4dc6e733bac8f22732af950e8 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Thu, 23 May 2002 15:08:53 +0000 Subject: Fix for bug 146261: fixes bug preventing the sending of email to users when the status of bugs changes in some situations. Patch by Tim Taylor . r=myk,bbaetz --- processmail | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/processmail b/processmail index 3ddf28d94..a4c7bdc5e 100755 --- a/processmail +++ b/processmail @@ -414,10 +414,8 @@ sub getEmailAttributes ($@) { # the STATUS will be flagged for Severity, Status and # Priority changes # - if ( $fieldName eq 'Status') { - if ($new eq 'RESOLVED' || $new eq 'VERIFIED') { - push (@flags, 'Resolved'); - } + if ( $fieldName eq 'Status' && ($new eq 'RESOLVED' || $new eq 'VERIFIED')) { + push (@flags, 'Resolved'); } elsif ( $fieldName eq 'Severity' || $fieldName eq 'Status' || $fieldName eq 'Priority' ) { -- cgit v1.2.3-24-g4f1b