diff options
Diffstat (limited to 'template/en/default/list/table.html.tmpl')
-rw-r--r-- | template/en/default/list/table.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index d4dcd0644..13ae38dbd 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -72,7 +72,7 @@ [% IF splitheader %] [% FOREACH id = displaycolumns %] - [% NEXT IF loop.count() % 2 == 0 %] + [% NEXT UNLESS loop.count() % 2 == 0 %] [% column = columns.$id %] [% PROCESS columnheader %] [% END %] @@ -80,7 +80,7 @@ </tr><tr align="left"><th> </th> [% FOREACH id = displaycolumns %] - [% NEXT UNLESS loop.count() % 2 == 0 %] + [% NEXT IF loop.count() % 2 == 0 %] [% column = columns.$id %] [% PROCESS columnheader %] [% END %] |