4.1.2 compatibilty patch:
================================================== ==========
Go to /admincp/plugin.php?do=modify and replace there the contents of the forumhome_complete module, that belongs to Usergroup Colorbar plugin with the following:
PHP 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'].' ';
}
$activemembers .= '<br /><b>'.$activeusers2 .'</b><br /><br />';
}