diff options
author | lpsolit%gmail.com <> | 2006-12-19 18:38:11 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-12-19 18:38:11 +0100 |
commit | 5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a (patch) | |
tree | 78004aa4e57c51977d4743699269dbf0db38f4e7 /template/en/default | |
parent | 9f5ecaad75e76200f8c304083a3244eecf801dff (diff) | |
download | bugzilla-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.tar.gz bugzilla-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.tar.xz |
Back out a change which is not part of the patch I reviewed and which breaks the list of flags to display on bug and attachment creation - see bug 335389
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/flag/list.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 9f89faacb..d3c983218 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -184,7 +184,7 @@ [%# Step 2: Display flag type again (if type is multiplicable). %] [% FOREACH type = flag_types %] - [% NEXT UNLESS type.is_multiplicable && type.is_active %] + [% NEXT UNLESS type.flags && type.flags.size > 0 && type.is_multiplicable && type.is_active %] [% IF !separator_displayed %] <tr><td colspan="3"><hr></td></tr> [% separator_displayed = 1 %] |