Commit 06959c62 authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 152935 - Pref for no notification on Target Milestone change not respected.…

Bug 152935 - Pref for no notification on Target Milestone change not respected. Patch by jodym@oeone.com; r=bbaetz, gerv.
parent 50b24dac
...@@ -393,7 +393,7 @@ sub filterExcludeList ($$) { ...@@ -393,7 +393,7 @@ sub filterExcludeList ($$) {
# if the Status was changed to Resolved or Verified # if the Status was changed to Resolved or Verified
# set the Resolved flag # 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 # set the Status flag
# #
# else if Keywords has changed # else if Keywords has changed
...@@ -426,14 +426,14 @@ sub getEmailAttributes (\%\@$) { ...@@ -426,14 +426,14 @@ sub getEmailAttributes (\%\@$) {
#print qq{field: $fieldName $new<br>}; #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 # Priority changes
# #
if ( $fieldName eq 'Status' && ($new eq 'RESOLVED' || $new eq 'VERIFIED')) { if ( $fieldName eq 'Status' && ($new eq 'RESOLVED' || $new eq 'VERIFIED')) {
push (@flags, 'Resolved'); push (@flags, 'Resolved');
} }
elsif ( $fieldName eq 'Severity' || $fieldName eq 'Status' || elsif ( $fieldName eq 'Severity' || $fieldName eq 'Status' ||
$fieldName eq 'Priority' ) { $fieldName eq 'Priority' || $fieldName eq 'Target Milestone') {
push (@flags, 'Status'); push (@flags, 'Status');
} elsif ( $fieldName eq 'Keywords') { } elsif ( $fieldName eq 'Keywords') {
push (@flags, 'Keywords'); push (@flags, 'Keywords');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment