diff options
author | gerv%gerv.net <> | 2002-09-20 08:01:16 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-09-20 08:01:16 +0200 |
commit | 06959c628a692adf11e0ce44fc90cdb6cf328e96 (patch) | |
tree | a99934b68446d929a680c9722abf0898c1bdabc4 /processmail | |
parent | 50b24dac9f8fb9401d0a053164c1f9247153dc01 (diff) | |
download | bugzilla-06959c628a692adf11e0ce44fc90cdb6cf328e96.tar.gz bugzilla-06959c628a692adf11e0ce44fc90cdb6cf328e96.tar.xz |
Bug 152935 - Pref for no notification on Target Milestone change not respected. Patch by jodym@oeone.com; r=bbaetz, gerv.
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/processmail b/processmail index 5a1460c18..45aaacc77 100755 --- a/processmail +++ b/processmail @@ -393,7 +393,7 @@ sub filterExcludeList ($$) { # if the Status was changed to Resolved or Verified # set the Resolved flag # -# else if Severity, Status OR Priority fields have any change +# else if Severity, Status, Target Milestone OR Priority fields have any change # set the Status flag # # else if Keywords has changed @@ -426,14 +426,14 @@ sub getEmailAttributes (\%\@$) { #print qq{field: $fieldName $new<br>}; - # the STATUS will be flagged for Severity, Status and + # the STATUS will be flagged for Severity, Status, Target Milestone and # Priority changes # if ( $fieldName eq 'Status' && ($new eq 'RESOLVED' || $new eq 'VERIFIED')) { push (@flags, 'Resolved'); } elsif ( $fieldName eq 'Severity' || $fieldName eq 'Status' || - $fieldName eq 'Priority' ) { + $fieldName eq 'Priority' || $fieldName eq 'Target Milestone') { push (@flags, 'Status'); } elsif ( $fieldName eq 'Keywords') { push (@flags, 'Keywords'); |