diff options
author | lpsolit%gmail.com <> | 2006-12-19 17:38:11 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-12-19 17:38:11 +0000 |
commit | 5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a (patch) | |
tree | 78004aa4e57c51977d4743699269dbf0db38f4e7 /template/en/default | |
parent | 9f5ecaad75e76200f8c304083a3244eecf801dff (diff) | |
download | bugs-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.tar bugs-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.tar.gz bugs-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.tar.bz2 bugs-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.tar.xz bugs-5f4ade1f01bfca77c9db8d56dd8cc5b2b4062d7a.zip |
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 %] |