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..