mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
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 <ttaylor@mitre.org>. r=myk,bbaetz
This commit is contained in:
parent
c6ba26144c
commit
020933de2b
@ -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' ) {
|
||||
|
Loading…
Reference in New Issue
Block a user