Fixed Importing polls, double quotes don´t show up correctly

aculate

Well-known member
Hello
Im having so much fun playing around with my new xenForo licence !!:D
The best experience ever with a forum script!

That beign said, i´m testing the import function and i notice that all of my polls import correctly except when the question contains double quotes. The double quotes shows as a ASCII character...

error_double_quotes.webp
 
A quick and easy fix is to run this query:
Code:
UPDATE xf_poll SET question = REPLACE(question,'"','"');

Take a backup first in case you need to restore the original table.
 
That's likely a bug. Short of reimporting after it's fixed, you can do what Brogan recommended.
 
Top Bottom