Replace
PHP Code:
if ($user['usergroupid'] == 6 and $highlightadmin) {
$userinfo["$key"]['username'] = "<b><i>$user[username]</i></b>";
} else if (($mod["$key"] or $user['usergroupid'] == 5)and $highlightadmin) {
$userinfo["$key"]['username'] = "<b>$user[username]</b>";
} else {
$userinfo["$key"]['username'] = $user[username];
}
AS:
PHP Code:
if ($user['usergroupid'] == 6 and $highlightadmin) {
$userinfo["$key"]['username'] = "<b><i>$user[username]</i></b>";
}
else if ($user['usergroupid'] == 8 and $highlightadmin)
{
$userinfo["$key"]['username'] = "<b><i>$user[username]</i></b>";
}
else if (($mod["$key"] or $user['usergroupid'] == 5)and $highlightadmin) {
$userinfo["$key"]['username'] = "<b>$user[username]</b>";
} else {
$userinfo["$key"]['username'] = $user[username];
}