diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-31 23:39:13 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-31 23:39:19 +0200 |
commit | a092e46153b5bf826fcc88f4908122f7f3e96370 (patch) | |
tree | 9c9c78043e15f4abae4326ff43157da8215f5dc1 /extensions/BugModal/template | |
parent | e31c0e9c22197ba938c6f4a853347edf54931700 (diff) | |
download | bugzilla-a092e46153b5bf826fcc88f4908122f7f3e96370.tar.gz bugzilla-a092e46153b5bf826fcc88f4908122f7f3e96370.tar.xz |
Bug 1272546 - unauthenticated users cannot expand the cc list
Diffstat (limited to 'extensions/BugModal/template')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index e1a57a1f6..fd1359b32 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -653,8 +653,10 @@ [% END %] [% IF bug.cc && bug.cc.size %] - <input type="hidden" name="removecc" id="removecc"> - <span id="cc-latch">▸</span> + [% IF user.id %] + <input type="hidden" name="removecc" id="removecc"> + <span id="cc-latch">▸</span> + [% END %] <span id="cc-summary" data-count="[% bug.cc.size FILTER none %]"> [% IF bug.cc.size == 1; |