Warning: Assigning the return value of new by reference is deprecated in ..../includes/class_postbit.php(345) : eval()'d code on line 115
How to fix.
ACP --> Plugins & Products --> Plugin Manager, Find the plugin called,
MARCO1 Hide BBCODE Functions, under the group,
MARCO1 Hide BBCODE, edit it and find this bit of code:
Code:
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Replace it with this:
Code:
$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());