Thanks! But is there a way to have Adin, Super Mods and Modertors in all of that? I guess I should have checked which group was which before I replied to the message. Sorry.
Quote:
Originally posted by Xenon
dssforum: its around line 627 in an unhacked online.php
boofo:
replace
PHP Code:
} else if (($mod["$key"] or $user['usergroupid'] == 5)and $highlightadmin) {
$userinfo["$key"]['username'] = "<b>$user[username]</b>";
} else {
with:
PHP Code:
} else if ($user['usergroupid'] == 5 and $highlightadmin) {
$userinfo["$key"]['username'] = "<b>$user[username]</b>";
} else if ($mod["$key"] and $highlightadmin) {
$userinfo["$key"]['username'] = "<b>$user[username]</b>";
} else {
groupid5 is supermods..
|