Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla
How to fix.
Open the file, view.php, in that file find the following (twice in the file):
Code:
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Replace with:
Code:
$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
Open the file, includes/wt_class_core, in that file find the following:
Code:
$bgclass =& $GLOBALS['bgclass'];
Replace it with this:
Code:
$bgclass = $GLOBALS['bgclass'];
Find:
Code:
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Replace with:
Code:
$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
Find:
Code:
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Replace with:
Code:
$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());