2011-10-22, 01:51 AM
2011-10-22, 02:06 AM
To allow some HTML in the usertitle:
Edit usercp.php around line 589:
Find
Replace with
That will allow people to use the <b> and <i> HTML tags.
Edit usercp.php around line 589:
Find
$newtitle = htmlspecialchars_uni($user['usertitle']);
Replace with
$newtitle = strip_tags($user['usertitle'], '<b><i>');
That will allow people to use the <b> and <i> HTML tags.