3
Hi:
First of all, thak you for your suggestions, jdseymour.
I've found a dirty workaround for the problem: inject the desired text in the text-area using Javascript.
Just in case someday somebody need this hack... Edit the line 83 of the modules/newbb/include/forumform.inc.php file in your XOOPS installation:
xoopsCodeTarea("message");
Change to:
xoopsCodeTarea("message");
// Insert original text in textarea when editing (needed in XOOPS 2.3+)
if ( empty($isreplay) && isset($message) && $message != "" ) {
echo "$message' />";
echo "";
}
That's all, everything seems to be working OK after the change (but do check if you apply the hack).
Regards: Colossus
PS: There are some other issues with Newbb 1 in XOOPS >= 2.0.17. For example
signature problem or when quoting or previewing posts.