Actually, don't worry. I've fixed it mayself.
For those interested ...
printthread.php needs to be changed first -
Find:
PHP Code:
$postbits = '';
while ($post = $db->fetch_array($posts))
{
and Replace with:
PHP Code:
//PostCounter
$postcount = ($vbulletin->GPC['pagenumber'] - 1 ) * $vbulletin->GPC['perpage'];
if ($postorder)
{ // Newest first
if ($totalposts > $postcount + $vbulletin->GPC['perpage'])
{
$postcount = $totalposts - $postcount + 1;
}
else
{
$postcount = $totalposts - $postcount + 1;
}
}
$counter = 0;
// PostCounter
$postbits = '';
while ($post = $db->fetch_array($posts))
{
// PostCounter
if ($counter >= $vbulletin->GPC['perpage'])
{
break;
}
++$counter;
if ($postorder)
{
$post['postcount'] = --$postcount;
}
else
{
$post['postcount'] = ++$postcount;
}
// PostCounter
Then make the same changes to template 'printthreadbit' as you do in 'postbit/legacy'