Message Text |
Approximately around line 252-256 I found this code in includes/displaycat.php
$template_linksbody = '<td></td>'; // make it validate
$tmp = strtolower($firsttype) . 'linksbodybase';
$$tmp = '<td></td>';
It renders when there are no topics in the forum as :
There are no topics in this forum.
<td></td>
</table>
That breaks my template if there are no topics. I can't find the closing table tag to remove it either. I'd rather allow clients to submit their topics rather than create ones for the sake of breaking code, but I will if you aren't going to be spending time on the forum in the near future. |