It's more complicated now, I'll try to be brief.
In showthread.php
after
but before
Code:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
add
Code:
$countposts = ($pagenumber-1)*$perpage;
about 8 lines down
BEFORE
Code:
$postbits .= getpostbit($post);
add
Code:
$countposts = $countposts+1;
Close showthread.php.
Open admin/functions.php
Find
Code:
function getpostbit($post) {
// sorts through all the stuff to return the postbit template
// user
global $bbuserinfo,$ignore;
// showthread //added $countposts
global $counter,$firstnew,$sigcache,$highlight,$postid,$forum;
Now add countposts variable to the end like so
Code:
function getpostbit($post) {
// sorts through all the stuff to return the postbit template
// user
global $bbuserinfo,$ignore;
// showthread //added $countposts
global $counter,$firstnew,$sigcache,$highlight,$postid,$forum,$countposts;
Done.