Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla
How to fix.
ACP --> Plugins & Products --> Plugin Manager, Find the plugin called,
Usergroup Color Bar, under the group,
Usergroup Color Bar, edit it and find this bit of code:
Code:
$userbuls = split(',', $vbulletin->options['sirala']);
Replace it with this:
Code:
$userbuls = explode(',', $vbulletin->options['sirala']);