well if you've installed this hack you cann edit your showthread.php:
find
PHP Code:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbits .= getpostbit($post);
}
and replace with this:
PHP Code:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbitid=0;
if($thread['forumid']==x and $post[userid]==y) $postbitid=z;
$postbits .= getpostbit($post,$postbitid);
}
that should do it