In index.php find:
PHP Code:
eval("\$activeusers .= \", ".gettemplate('forumhome_loggedinuser')."\";");
}
}
$DB_site->free_result($loggedins);
replace with:
PHP Code:
eval("\$activeusers .= \", ".gettemplate('forumhome_loggedinuser')."\";");
}
}
$DB_site->free_result($loggedins);
if ($bbuserinfo[userid]==0) {
$activeusers="";
}
now in forumdisplay.php fine:
PHP Code:
}
eval("\$onlineusers .= \"".gettemplate('forumdisplay_loggedinusers')."\";");
}
}
and replace with:
PHP Code:
}
eval("\$onlineusers .= \"".gettemplate('forumdisplay_loggedinusers')."\";");
}
}
if ($bbuserinfo[userid]==0) {
$browsers="";
}
that should do it..