Quote:
Originally Posted by Erwin
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! 
|
Anyone tried this and getting a side effect of the bot not remembering things being discussed?
Mmm...
Tim, did you change any of the variables in the new code compared to the old code?