Aaron1 - Yes, that is possible and fairly easy to do. In index.php and the first edit in forumdisplay.php, you would use this code instead:
PHP Code:
$forum[replycount]="".number_format($forum['replycount'], 0, '', '.');
$forum[threadcount]="".number_format($forum['threadcount'], 0, '', '.');
Then for the 2nd edit in forumdisplay.php, you would use this code instead:
PHP Code:
$thread[replycount]="".number_format($thread['replycount'], 0, '', '.');
$thread[views]="".number_format($thread['views'], 0, '', '.');
Velocd - Glad something so simple could help to make your life worth living.