Tigga, in your instructions, shouldn't this:
PHP Code:
Now open usercp.php AND member2.php and look for:
$replies=$thread[replycount];
$views=$thread[views];
Change that to (in both files):
$thread[replycount]=number_format($thread[replycount]);
$thread[views]=number_format($thread[views]);
actually be this:
PHP Code:
Now open usercp.php AND member2.php and look for:
$replies=$thread[replycount];
$views=$thread[views];
Change that to (in both files):
$replies=number_format($thread[replycount]);
$views=number_format($thread[views]);