I'd like to post a bug fix.
When you add
Code:
<if condition="$forum[forumid] != x">
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
</if>
to the bottom of the forumhome_forumbit_level1_nopost template, the page will still appear fine, but will not validate as XHTML 1.0 Transitional, as it's opening a new table, breaking a line, then opening another table.
If you make the code
Code:
<if condition="$forum[forumid] != x">
</table>
</if>
it will render and validate fine (IE/Firefox).