Quote:
Originally Posted by simonhind
its now changed to class_wysiwygparser.php
in 4.2.0 PL2 - PL3
|
I know it. I asked in case that there was a conflist, with old files. The full code there must be like:
Code:
if (version_compare(@$vbulletin->versionnumber, '4.1.4', '>='))
{
require_once(DIR . '/includes/class_wysiwygparser.php');
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
$vbulletin->GPC['message'] = $html_parser->parse_wysiwyg_html_to_bbcode($_POST['message'], 0);
} else {
require_once(DIR . '/includes/functions_wysiwyg.php');
$vbulletin->GPC['message'] = convert_wysiwyg_html_to_bbcode($_POST['message'], 0);
}