Here's my PHP version:
PHP Code:
if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 .= '<div class="smallfont"><b>' . $vbphrase[legend] . ':</b> ';
$userbuls = split(',', $vbulletin->options['sirala']);
$isnotfirst = 0;
foreach($userbuls AS $userbul) {
if ($isnotfirst)
$activeusers2 .= '• ';
$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . ' ' . $vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
$isnotfirst = 1;
}
$activeusers = ''.$activeusers2 .'<br /><br />'. $activeusers;
}
The modifications removes the bullet from the first element, add a "Legend" title, and remove the default BOLD from all the groups. "$legend" phrase need to be created.
See the attached images for a screenshot.