diff options
author | travis%sedsystems.ca <> | 2005-02-19 05:11:59 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-19 05:11:59 +0000 |
commit | 1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465 (patch) | |
tree | 92bd5f6282ac4cd0f1a94882861ae8758695c787 | |
parent | e9273ed3ae65db0e2c6f0b8889c852667a8f26b6 (diff) | |
download | bugs-1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465.tar bugs-1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465.tar.gz bugs-1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465.tar.bz2 bugs-1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465.tar.xz bugs-1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465.zip |
Bug 282621 : error message in the apache log file when creating a new attachment
Patch by Frederic Buclin <LpSolit@gmail.com> r=myk, a=myk
-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 f660b15ca..3d8161ff1 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -166,7 +166,7 @@ [%# Step 2: Display flag type again (if type is multiplicable). %] [% FOREACH type = flag_types %] - [% NEXT UNLESS type.flags.size > 0 && 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 %] |