If you happen to want to allow BB code to be in custom titles, you can do this simple modification to make BB code parse in titles on profile pages.
Open up member.php
Find:
PHP Code:
// CUSTOM TITLE
if ($userinfo['customtitle'] == 2)
{
$userinfo['usertitle'] = htmlspecialchars_uni($userinfo['usertitle']);
}
Change that to:
PHP Code:
// CUSTOM TITLE
if ($userinfo['customtitle'] == 2)
{
require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$userinfo['usertitle'] = $parser->do_parse(htmlspecialchars_uni($userinfo['usertitle']), false, true, true, false, true, false);
}
Now everything should parse properly, except for images, because they are not allowed. If you want to allow images to be added, change it to this instead:
PHP Code:
// CUSTOM TITLE
if ($userinfo['customtitle'] == 2)
{
require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$userinfo['usertitle'] = $parser->do_parse(htmlspecialchars_uni($userinfo['usertitle']), false, true, true, true, true, false);
}