summaryrefslogtreecommitdiffstats
path: root/template/en/default/list/table.html.tmpl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-04-30 04:36:03 +0200
committergerv%gerv.net <>2002-04-30 04:36:03 +0200
commit6f9b338907638ccf69b88c8a9ed539369d760f83 (patch)
tree856b75c5db06b506f966674ed10dacd1b657cf6e /template/en/default/list/table.html.tmpl
parent773a2ca32beccd7acc1e6d3a68c5ae2ed6dd3a10 (diff)
downloadbugzilla-6f9b338907638ccf69b88c8a9ed539369d760f83.tar.gz
bugzilla-6f9b338907638ccf69b88c8a9ed539369d760f83.tar.xz
Bug 140329 - Stagger headers have wrong order. Patch by myk; 2xr=gerv.
Diffstat (limited to 'template/en/default/list/table.html.tmpl')
-rw-r--r--template/en/default/list/table.html.tmpl4
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>&nbsp;</th>
[% FOREACH id = displaycolumns %]
- [% NEXT UNLESS loop.count() % 2 == 0 %]
+ [% NEXT IF loop.count() % 2 == 0 %]
[% column = columns.$id %]
[% PROCESS columnheader %]
[% END %]