I had posted something saying I was going to go look at class_bbcode.php. I did, and have changed my code to the following...
Code:
function process_message_preview($message)
{
global $vbulletin, $vbphrase, $stylevar, $show;
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$previewhtml = '';
if ($previewmessage = $bbcode_parser->do_parse($message, $do_html = true, $do_smilies = true, $do_bbcode = true, $do_imgcode = true, $do_nl2br = true, $cachable = false))
{
$previewhtml = $previewmessage;
}
$mypage = process_message_preview($vbulletin->userinfo['field65']);
eval('$mypage = "' . fetch_template('user_custompage') . '";');
Now what I don't understand is why its not allowing me to use <table> and </table> in my profile field.
Here is my profile field code.
PHP Code:
<table>
[B]Here is my test page[/B]
[img]https://vborg.vbsupport.ru/external/2009/04/7.gif[/img]
</table>
On MEMBERINFO template, I'm able to show my bold text, the google image, but the <table> tags just show up like text, not html. Any Ideas?