looks right to me Boofo...
open admin/functions.php
find:
PHP Code:
$post[onlinetime] = dotimeonline($post[timeonline]);
replace it with:
PHP Code:
if($post[usergroupid] == 6 OR $post[timeonline] == 0) {
$post[onlinetime] = "";
} else {
$post[onlinetime] = dotimeonline($post[timeonline]);
}
open member.php
find:
PHP Code:
eval("\$getinfo_timeonline = \"".gettemplate('getinfo_timeonline')."\";");
replace it with:
PHP Code:
if($userinfo[usergroupid] == 6 OR $userinfo[timeonline] == 0) {
$getinfo_timeonline = "";
} else {
eval("\$getinfo_timeonline = \"".gettemplate('getinfo_timeonline')."\";");
}
That should do the trick Boofo... but a quick thing about user time online being zero... this actually should not take effect anymore... because all new registers will have a timeonline from the point that you installled... only reason some users hack a timeonline that is zero is because the fact that you installed it after your forum has been up for quite some time

this really has nothing to do with this addition just explaining why users shouldn't havea timeonline of zero anymore... regards...
g-force2k2