From 6f9b338907638ccf69b88c8a9ed539369d760f83 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Tue, 30 Apr 2002 02:36:03 +0000 Subject: Bug 140329 - Stagger headers have wrong order. Patch by myk; 2xr=gerv. --- template/en/default/list/table.html.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'template/en/default/list') 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 @@   [% FOREACH id = displaycolumns %] - [% NEXT UNLESS loop.count() % 2 == 0 %] + [% NEXT IF loop.count() % 2 == 0 %] [% column = columns.$id %] [% PROCESS columnheader %] [% END %] -- cgit v1.2.3-24-g4f1b