Ok, no way to test this but .....
Find this:
<td class="windowbg2b" valign="middle" align="center" style="width: 8ex;">
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
</p>
</td>
<td class="windowbg2b" valign="middle" align="center" style="width: 8ex;">
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td>
Change to this:
<td class="windowbg2b" valign="middle" align="center" style="width: 8ex;">
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : ' ' , ' <br />
</p>
</td>
<td class="windowbg2b" valign="middle" align="center" style="width: 8ex;">
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . ' ' , '
</p>
</td>