Quote:
Originally Posted by owning_y0u
Getting the following error 4.1.12
Deprecated: Assigning the return value of new by reference is deprecated in vbookie.php on line 721
Deprecated: Assigning the return value of new by reference is deprecated in vbookie.php on line 1441
|
Edit the vbookie.php file, search for
Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
and replace with
Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
The 2 occurrences will be on lines 721 and 1441