btw to show time instead of the little icon.
Like 12:13pm etc
Do the following
instead of using this
PHP Code:
if($userinfo[lastactivity]>$datecut) {
eval("\$userinfo[online] = \"".gettemplate("postbit_online")."\";");
}
else {
eval("\$userinfo[online] = \"".gettemplate("postbit_offline")."\";");
}
use this
PHP Code:
$userinfo[online] = vbdate($timeformat,$userinfo[lastactivity]);