Quote:
Originally Posted by Mr Chad
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /var/www/vhosts/xxx.com/httpdocs/forum/alice/src/graphnew.php on line 125
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /var/www/vhosts/xxx.com/httpdocs/forum/alice/src/graphnew.php on line 231
|
To get rid of these errors is easy (I assume you're using PHP 5.x.x too?)
Edit graphnew.php
Find in line 125:
PHP Code:
$newword=fastforward($word,&$ffremains);
Replace with:
PHP Code:
$newword=fastforward($word,$ffremains);
Then find in line 231 the same thing:
PHP Code:
$newword=fastforward($word,&$ffremains);
Replace with:
PHP Code:
$newword=fastforward($word,$ffremains);
Fixed!