Quote:
Originally posted by cditty
How would I make this visible to admins and mods only?
|
I think you'll want to replace this...
PHP Code:
if ($browsers) {
eval("\$onlineusers = \"".gettemplate('showthread_browsing')."\";");
}
...with this...
PHP Code:
if ($browsers && ($bbuserinfo[usergroupid] == 5 || $bbuserinfo[usergroupid] == 6 || $bbuserinfo[usergroupid] == 7)) {
eval("\$onlineusers = \"".gettemplate('showthread_browsing')."\";");
}
...I think that should make it visible to Mods, Super Mods, and Admins. Haven't tested it, though.