Quote:
Originally Posted by deadlySniper
I am getting this error for some reason
Code:
Deprecated: Assigning the return value of new by reference is deprecated in /home/content/63/9570563/html/forums/modcp/ars_report.php on line 193
|
What version of php are you using?
#update
fix is easy
replace in modcp/ars_report.php
Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
with
Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());