Quote:
Originally posted by SWFans.net
I?d like to make the onlinetoday.php file also show invisible users to my mods, but I am unable to do so on my own. Can anyone provide the code that would allow usergroup 7 to see invisible users in onlinetoday.php?
|
this changes will allow supermoderators and moderators to see the invisible user, no matter what there usergroupid is.
search for this line in the hack:
PHP Code:
if ($todayuser['invisible']==1 and $bbuserinfo['usergroupid']!=6) {
and replace it with this line:
PHP Code:
if ($todayuser['invisible']==1 and $bbuserinfo['usergroupid']!=6 and $bbuserinfo['usergroupid']!=5 and !$mod["$bbuserinfo[userid]"]) {