Ive come up with this to stop the date problem
In pmstats.php
Find
PHP Code:
$lastpost = strftime("%d-%m-%y<br>%H:%M:%S", "$user[lastpost]");
and replace with
PHP Code:
if ($user[lastpost]==0){
$lastpost = "Never Posted";
} else {
$lastpost = strftime("%d-%m-%y<br>%H:%M:%S", "$user[lastpost]");
}
All it does it looks for a dateline of 0 (no date) and sets $lastpost to Never Posted instead of the date.