Yesterday, i built the Mods "Color Group" and "Junior Admin" in my phpBB2 Plus 1.3 Board. But I have a little Problem. In the list with the users, who were today online, the colors are not changed. I think, the reason for this is in this code (index.php, Line 399):
How should I change this code, and how should I add the Junior-Admin to this code?switch ($todayrow['user_level'])
{
case ADMIN :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
break;
break;
case LESS_ADMIN :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#fc010d"';
break;
case MOD :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
break;
}