3
Hi:
I had the same problem. To make the story sort, arguments to some functions seem to be passed by reference instead of by value now. To fix it:
Edit file modules/newbb/viewtopic.php and, around lines 276 and 321, change the following code:
$post_text .= '<p><br />----------------<br />'. $myts->makeTareaData4Show($eachposter->getVar('user_sig', 'N'), 0, 1, 1).'</p>';
To this:
$var=$eachposter->getVar("user_sig", "N");
$post_text .= "<p><br />----------------<br />". $myts->makeTareaData4Show($var, 0, 1, 1)."</p>";
For those of you not using Newbb, you should find some similar pieces of code (calls to makeTareaData4Show function) and change them following the previous example.
Good luck, and regards: Colossus