]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 877083 - "Ignore Bug Mail" shouldn't lead to request email being dropped
authorDave Lawrence <dlawrence@mozilla.com>
Wed, 12 Jun 2013 16:17:10 +0000 (12:17 -0400)
committerDave Lawrence <dlawrence@mozilla.com>
Wed, 12 Jun 2013 16:17:10 +0000 (12:17 -0400)
r=glob,a=LpSolit

Bugzilla/Flag.pm
template/en/default/bug/edit.html.tmpl

index 0ecc545fdcb477036a53bb6fefd487cf9cf70ed5..98029a1b14c31fea9aae611016e4fea1ebb8d813 100644 (file)
@@ -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;
index 8d3d7630617ce008beed455598c70ef56fffd805..933b9ce72e52c71a1eb690c224f164f46330727d 100644 (file)
       </th>
       <td>
         <input type="hidden" name="defined_bug_ignored" value="1">
-        <input type="checkbox" name="bug_ignored" id="bug_ignored" value="1"
-               [% ' checked="checked"' IF user.is_bug_ignored(bug.id) %]>
-        (never email me about this [% terms.bug %])
+        <span title="You will still receive emails for flag requests directed at you.">
+          <input type="checkbox" name="bug_ignored" id="bug_ignored" value="1"
+                 [% ' checked="checked"' IF user.is_bug_ignored(bug.id) %]>
+          (never email me about this [% terms.bug %])
+        </span>
       </td>
     </tr>
   [% END %]