diff options
author | Byron Jones <glob@mozilla.com> | 2015-10-12 16:29:46 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-10-12 16:29:46 +0200 |
commit | 81460eefa7297f014bc6a322bc71d19553d76abc (patch) | |
tree | 2c88933761938f22b3981c8223021db075f2b926 /extensions/BugModal | |
parent | bb7cbda33555735d17c41d2b9bdd54359dad2d94 (diff) | |
download | bugzilla-81460eefa7297f014bc6a322bc71d19553d76abc.tar.gz bugzilla-81460eefa7297f014bc6a322bc71d19553d76abc.tar.xz |
Bug 1197805 - Always show "never email me about this bug" checkbox
Diffstat (limited to 'extensions/BugModal')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/new_comment.html.tmpl | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/new_comment.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/new_comment.html.tmpl index ef116c229..b2ba5fe0c 100644 --- a/extensions/BugModal/template/en/default/bug_modal/new_comment.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/new_comment.html.tmpl @@ -80,20 +80,18 @@ </table> [% END %] - [% IF user.is_involved_in_bug(bug) %] - <table class="edit-show" style="display:none"> - <tr> - <td> - <input type="checkbox" name="bug_ignored" id="bug-ignored" - [%= "checked" IF user.is_bug_ignored(bug.id) %]> - </td> - <td> - <label for="bug-ignored" title="You will still receive emails for flag requests directed at you"> - Never email me about this [% terms.bug %] - </label> - </td> - </tr> - </table> - [% END %] + <table class="edit-show" style="display:none"> + <tr> + <td> + <input type="checkbox" name="bug_ignored" id="bug-ignored" + [%= "checked" IF user.is_bug_ignored(bug.id) %]> + </td> + <td> + <label for="bug-ignored" title="You will still receive emails for flag requests directed at you"> + Never email me about this [% terms.bug %] + </label> + </td> + </tr> + </table> </div> </div> |