In vblinklist.php search for (in line 1931):
PHP Code:
$message = ($vbulletin->GPC['wysiwyg'] ? convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']) : htmlspecialchars_uni($vbulletin->GPC['message']));
and replace with
PHP Code:
require_once(DIR . '/includes/class_wysiwygparser.php');
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
$message = $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);