10-10-2013, 09:22 AM
|
|
|
|
Join Date: May 2012
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ozzy47
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']);
|
thanks work perfectly
|