XF 1.2 Replacing " With " (or Fixing Quotation Marks)

imno007

Well-known member
After converting from SMF, I've discovered that every single quotation mark (double quote) on my Xenforo forums has been replaced with "

Is there a simple database query I could run that would replace every instance of " with quotation marks?

Thanks
 
If it's a simple replacement for identical content, you could just use a query.

Code:
UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');

Take a backup before doing so though.
 
Top Bottom