Cant submit a review due to a removed file since 4.1.4 (functions_wysiwyg.php)
problem can be solved if you change the following in your productforums.php
Find
PHP Code:
if($vbulletin->VERSION < '4.1') {
require_once(DIR . '/includes/functions_wysiwyg.php');
$newpost['message'] = convert_wysiwyg_html_to_bbcode($message, 1);
} else {
require_once(DIR . '/includes/class_wysiwygparser.php');
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
$newpost['message'] = $html_parser->parse_wysiwyg_html_to_bbcode($message, 1);
}
and replace with
PHP 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);
}