MyBB Community Forums

Full Version: Smilies bugs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it still a thing, or is it fixed and I'm just doing something wrong here?
[attachment=31200]
Have you tried editing that smiley in the Admin CP?
You need only enter the image URL and not an img HTML tag in the Smilies section of the Admin CP.

Admin CP -> Configurations -> Smilies
|- Add new smilie
`- Edit

[Image: cIGMcjl.png]
lol, that's what I had, I feel like I need to add an addslashes but I just don't know where
Editing misc.php and replacing:

$smilie['insert'] = addslashes($smilie['find']);

with:

$smilie['insert'] = htmlspecialchars(addslashes($smilie['find']));

seems to work.
Perfect, that's all I needed, thanks Nathan