Quote:
Originally Posted by djpatch
Getting this error when I try to go to the ranks page. Using Vb 4.1.7.
Deprecated: Assigning the return value of new by reference is deprecated in forum\ranks.php on line 46
|
More than likely it's due to your PHP version i.e. 5.3.x for now simply edit ranks.php and find:
Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Replace with:
Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
Save & re-upload the file, error should be gone, it's the =& that's causing all the fuss
.