Go to your AdminCP->Plugins and Products dropdown->Plugin Manager (NOT where you Install the product) ->Usergroup Color Bar -> Edit
Replace the code with:
Code:
if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 = '';
$userbuls = split(',', $vbulletin->options['sirala']);
foreach($userbuls AS $userbul)
{
$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . ' • ' . $vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'] . ' ';
}
$vbphrase['most_users_ever_online_was_x_y_at_z'] .= '<p><b>'.$activeusers2.'</b></p>';
}