MyBB Community Forums

Full Version: Signature quotes are messed up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
They look like this:

&quot;You don’t improve education by demoralizing the people who have to do the work every day.”<br />-Diane Ravitch

How can I get it fixed?
first run this SQL query for testing
SELECT * FROM `mybb_users` WHERE `signature` LIKE '%&quot;%'

if you get a list of signatures with &quot; then try below
UPDATE `mybb_users` SET `signature` = REPLACE(`signature`, '&quot;', '"') WHERE `signature` LIKE '%&quot;%' 



same for the <br / > thing?
^ yes, that should work..