Commit dffff7a2 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 238025: generate HTML table header in editkeywords.cgi even when…

Patch for bug 238025: generate HTML table header in editkeywords.cgi even when there are no keywords defined; patch by Rudolf Ramler <rudolf.ramler@scch.at>; r=vlad, a=justdave.
parent b6a02786
...@@ -52,8 +52,10 @@ ...@@ -52,8 +52,10 @@
</table> </table>
[% END %] [% END %]
[% PROCESS table_header %]
[% FOREACH keyword = keywords %] [% FOREACH keyword = keywords %]
[% IF loop.count() % max_table_size == 1 %] [% IF !loop.first() && loop.count() % max_table_size == 1 %]
[% PROCESS table_header %] [% PROCESS table_header %]
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment