Quote:
Originally Posted by bosken
Oh sorry, just blank space. Nothing there.
|
Hmm, I put your code in my dev system and it seems to work for me?
Attachment 141670
Maybe it's the html part, try opening the includes/garage_func_var.php and find
PHP Code:
if ($vbulletin->options[garage_desc_html] == "1")
{
$welcomemsg = $bbcode_parser->do_parse(unhtmlspecialchars($vbulletin->options[garagewelcome]), $do_html = true, $do_smilies = true, $do_bbcode = true, $do_imgcode = true, $do_nl2br = true, $cachable = false);
} else {
$welcomemsg = $bbcode_parser->do_parse(unhtmlspecialchars($vbulletin->options[garagewelcome]), $do_html = false, $do_smilies = true, $do_bbcode = true, $do_imgcode = true, $do_nl2br = true, $cachable = false);
}
and replace it with
PHP Code:
// if ($vbulletin->options[garage_desc_html] == "1")
// {
$welcomemsg = $bbcode_parser->do_parse(unhtmlspecialchars($vbulletin->options[garagewelcome]), $do_html = true, $do_smilies = true, $do_bbcode = true, $do_imgcode = true, $do_nl2br = true, $cachable = false);
// } else {
// $welcomemsg = $bbcode_parser->do_parse(unhtmlspecialchars($vbulletin->options[garagewelcome]), $do_html = false, $do_smilies = true, $do_bbcode = true, $do_imgcode = true, $do_nl2br = true, $cachable = false);
// }
Let me know if that helps