Not sure how many have figured this out. But on our boards we use bbcode and smilies in custom titles which wasn't showing properly in titlewars. This is how I fixed it.
Code:
Find this:
$newtitle = $usertitle[towhat];
eval("\$titlebits .= \"".gettemplate("store_titlebits")."\";");
Code:
and change it to:
$newtitle = $usertitle[towhat]; {
$usertitle[towhat]=bbcodeparse($usertitle[towhat]);
}
eval("\$titlebits .= \"".gettemplate("store_titlebits")."\";");