diff options
author | 2007-08-24 09:01:54 +0000 | |
---|---|---|
committer | 2007-08-24 09:01:54 +0000 | |
commit | ba223d54c1bc53db9d986096544b7a632e06b8a7 (patch) | |
tree | bf51337523b15e8e42c6bb52d24f68372c14c3c1 | |
parent | Bug 390442: Bugzilla/Template.pm was failing on perl 5.9.5 with "Not a subrou... (diff) | |
download | bugzilla-ba223d54c1bc53db9d986096544b7a632e06b8a7.tar.gz bugzilla-ba223d54c1bc53db9d986096544b7a632e06b8a7.tar.bz2 bugzilla-ba223d54c1bc53db9d986096544b7a632e06b8a7.zip |
Bug 391945 Staggered headers don't check dotweak properly
r=vladd a=mkanat
-rw-r--r-- | template/en/default/list/table.html.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 2918007c1..588993666 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -104,7 +104,11 @@ [% PROCESS columnheader %] [% END %] - </tr><tr align="left"><th> </th> + </tr><tr align="left"> + [% IF dotweak %] + <th> </th> + [% END %] + <th> </th> [% FOREACH id = displaycolumns %] [% NEXT IF loop.count() % 2 == 0 %] |