diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-08-30 18:09:57 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-08-30 18:09:57 +0200 |
commit | cc747ce58fb842897b45a67af40e178879cf384d (patch) | |
tree | 84c8b3fada59c1d000bc65985505e093a0d1ed97 /template | |
parent | 492a7b7ed5881b827a48857cec2f315d155fddc8 (diff) | |
download | bugzilla-cc747ce58fb842897b45a67af40e178879cf384d.tar.gz bugzilla-cc747ce58fb842897b45a67af40e178879cf384d.tar.xz |
Bug 786691 - Do not display the (more flags) link to logged out users as they cannot set any flag
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index a2a4300d6..6ad406af9 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -882,7 +882,7 @@ [% IF (type.flags && type.flags.size > 0) || (user.id && type.is_active) %] [% show_bug_flags = 1 %] [% END %] - [% IF type.is_active && (type.flags.size == 0 || type.is_multiplicable) %] + [% IF user.id && type.is_active && (type.flags.size == 0 || type.is_multiplicable) %] [% show_more_flags = 1 %] [% END %] [% IF type.flags && type.flags.size > 0 %] |