Quote:
Originally Posted by ozzy47
Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla
How to fix.
Open the file, includes/cron/xperience_calc.php, in that file find the following:
Code:
$xPerience =& new xPerience;
Replace with:
Code:
$xPerience = new xPerience;
Open the file, includes/cron/xperience_activity.php, in that file find the following:
Code:
$xPerience =& new xPerience;
Replace with:
Code:
$xPerience = new xPerience;
|
Did this, still getting the errors.
What brought me here though is that the links to experience in the quicklinks are not showing up. The tabs are working on user profiles and the postbit info is working but I'm unable to check stats for the forum as a whole.