if ($ctShowTitle == 1) {
if ($bbuserinfo[usergroupid]!=6) {
$customtitle = 2; // 2 signifies that the user set the title and we need to htmlspecialchars when ever displaying the title.
} else {
$customtitle = 1;
}
as you can see admins can use html, if you want to allow it for mods and supermods also replace it with:
PHP Code:
if ($ctShowTitle == 1) {
if ($bbuserinfo[usergroupid]!=6 and $bbuserinfo[usergroupid]!=5 and $bbuserinfo[usergroupid]!=7) {
$customtitle = 2; // 2 signifies that the user set the title and we need to htmlspecialchars when ever displaying the title.
} else {
$customtitle = 1;
}