Thanks bira ...
I just finished installing it on my test board, but now I get this error when I try to click a thread from forumdisplay.php:
Code:
Parse error: parse error in /home/username/public_html/forums/showthread.php on line 401
I looked for that line, and this is what it contained (lines 398-408)
PHP Code:
$counter=0;
$countposts = ($pagenumber-1)*$perpage;
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdoneery(st[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbits .= getpostbit($post);
}
Any idea what I did wrong on this one? Thanks in advance