If you want $bbuserinfo[lastvisitdate] to follow the "Today 8:33 AM" format, here's how:
1) In index.php, around line 65, find:
PHP Code:
} else {
$welcometext = "";
eval("\$newposts = \"".gettemplate('forumhome_todayposts')."\";");
eval("\$logincode = \"".gettemplate('forumhome_logincode')."\";");
}
2) Just after it, add this line:
PHP Code:
eval("\$bbuserinfo[lastvisitdate] = \"".vbdate($dateformat,$bbuserinfo[lastvisit]).
" ".vbdate($timeformat,$bbuserinfo[lastvisit])."\";");
Note: to change this to the "Today
at 8:33 AM" format,
go here.