2
Hi Dubya
I just found this annoying bug too, and I found the reason, and the solution ^^
Apparently, it cames from the changes made in class/module.textsanitizer.php, function $previewTarea.
To resolve, just replace in your modules/newbb/post.php, about line 86
Quote:
$p_message = $myts->previewTarea($_POST['message'],$dohtml,$dosmiley,$doxcode);
by
Quote:
$temp_message = $_POST['message'];
$p_message = $myts->previewTarea($temp_message,$dohtml,$dosmiley,$doxcode);
And it will work :)