In boardIndexTemplate find:
<th scope='col' class='col_c_stats stats'>{$this->lang->words['stats']}</th>
Change that to:
<th scope='col' class='col_c_stats stats'>Topics</th>
Then under that, add this:
<th scope='col' class='col_c_stats stats'>Posts</th>
Now a bit further in the template, find the following code:
<td class='col_c_stats ipsType_small'>
<ul>
<li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li>
<li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li>
</ul>
</td>
Change that to:
<td class='col_c_stats ipsType_small'>
<ul>
<li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li>
</ul>
</td>
<td class='col_c_stats ipsType_small'>
<ul>
<li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li>
</ul>
</td>
I think this is right, but i haven't tested it. If it doesn't work then go back and undo the changes. (Follow these steps in reverse order)