diff options
author | Sunil Joshi <joshi_sunil@in.com> | 2013-08-27 00:34:30 +0200 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2013-08-27 00:34:30 +0200 |
commit | 7cc0c53c360dde719ecad8139ab0fe7c2a65a640 (patch) | |
tree | 117f7a25033b54631cab2e5deb0585435b32462c /template/en/default/attachment | |
parent | 0b1ea79edf45677d41c2cc8f2c71426a3a5fb097 (diff) | |
download | bugzilla-7cc0c53c360dde719ecad8139ab0fe7c2a65a640.tar.gz bugzilla-7cc0c53c360dde719ecad8139ab0fe7c2a65a640.tar.xz |
Bug 903337 - Do not display the CC list and the "Remove selected CCs" checkbox if the CC list is empty
r=simon, a=glob
Diffstat (limited to 'template/en/default/attachment')
-rw-r--r-- | template/en/default/attachment/create.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl index 8f5477e23..abc0f97bf 100644 --- a/template/en/default/attachment/create.html.tmpl +++ b/template/en/default/attachment/create.html.tmpl @@ -92,7 +92,7 @@ TUI_hide_default('attachment_text_field'); cols = constants.COMMENT_COLS wrap = 'soft' %] - [% IF NOT bug.cc || NOT bug.cc.contains(user.login) %] + [% IF NOT bug.cc.contains(user.login) %] <br> <input type="checkbox" id="addselfcc" name="addselfcc" [%~ ' checked="checked"' diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 67dcabd75..518737788 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -255,7 +255,7 @@ wrap = 'soft' classes = classNames %] - [% IF NOT attachment.bug.cc || NOT attachment.bug.cc.contains(user.login) %] + [% IF NOT attachment.bug.cc.contains(user.login) %] <input type="checkbox" id="addselfcc" name="addselfcc" [%~ ' checked="checked"' IF user.settings.state_addselfcc.value == 'always' |