For some reason, it's just stopped working? on the who's online list, they're now just like registered users

in plain text, no bold or italics, this is what I have in my index.php file...
Code:
if ($loggedin['usergroupid'] == 6 and $highlightadmin)
{
$username = "<b><i>$loggedin[username]</i></b>";
}
else if ($loggedin['usergroupid'] == 8 and $highlightadmin)
{
$username = "<b><i>$loggedin[username]</i></b>";
}
else if (($mod["$userid"] or $loggedin['usergroupid'] == 5) and $highlightadmin)
{
$username = "<b>$loggedin[username]</b>";
} else
{
$username = $loggedin['username'];
}
eval("\$activeusers = \"".gettemplate('forumhome_loggedinuser')."\";");
}