Quote:
Originally Posted by Beatrix Kiddo
I tried it again, fresh install..Still same problem. As you can see in the image the color bar displays twice and eliminates any user name that is online from showing up (Disables whose online display)
Any suggestions?
|
Goto your forumshome_complete in the hooks location and try this code, it works for me on 4.1.9
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>';
}