diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-06-12 18:17:10 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-06-12 18:17:10 +0200 |
commit | 7ac0c72189843239a91ddbb1de55868cbe00845f (patch) | |
tree | eb285ba1c811c419fb50f449590dcaa07c683c9b /Bugzilla | |
parent | a39f638eee6327e0a003dbde6dd51934979b3cc7 (diff) | |
download | bugzilla-7ac0c72189843239a91ddbb1de55868cbe00845f.tar.gz bugzilla-7ac0c72189843239a91ddbb1de55868cbe00845f.tar.xz |
Bug 877083 - "Ignore Bug Mail" shouldn't lead to request email being dropped
r=glob,a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Flag.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 0ecc545fd..98029a1b1 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -997,9 +997,6 @@ sub notify { } foreach my $to (keys %recipients) { - # Skip sending if user is ignoring the bug. - next if ($recipients{$to} && $recipients{$to}->is_bug_ignored($bug->id)); - # Add threadingmarker to allow flag notification emails to be the # threaded similar to normal bug change emails. my $thread_user_id = $recipients{$to} ? $recipients{$to}->id : 0; |