Ok all now its working better, i removed the check for wysiwyg that would convert to bb code or just post the text, no matter what you use it will convert to the bb code, and it works.
It seemed not to return new lines with convert_wysiwyg_html_to_bbcode so I forced it to nl2br and make new lies, it looks GREAT!
Seems to be doing ok, cant wait to start using it.
New code simply does:
Code:
require_once('./includes/functions_wysiwyg.php');
$message = convert_wysiwyg_html_to_bbcode(nl2br($_POST[message]), $vboptions['allowhtml']);
Old code:
Code:
globalize($_POST, array('WYSIWYG_HTML', 'message' => STR));
if (isset($WYSIWYG_HTML))
{
require_once('./includes/functions_wysiwyg.php');
$message = convert_wysiwyg_html_to_bbcode($WYSIWYG_HTML, $vboptions['allowhtml']);
}
else
{
$message = trim($message);
}