ready
I get an error when installing the theme I use
DEFAULT
// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="stats windowbg">
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td>
<td class="lastpost">';
THEME TO USE
// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="lastpost windowbg">';
/* The board's and children's 'last_post's have:
time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
link, href, subject, start (where they should go for the first unread post.),
and member. (which has id, name, link, href, username in it.) */
if (!empty($board['last_post']['id']))
echo '
<p><span>', $board['last_post']['member']['link'] , ' ', $txt['in'], ' ', $board['last_post']['link'], '</span><br />
', $board['last_post']['time'],'
</p>';
echo '
</td>
<td class="stats">
<p><span>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' </span><br />
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td>
</tr>';
that part is different