Announcement
Collapse
No announcement yet.
newly converted - getting \" instead of "
Collapse
X
-
newly converted - getting \" instead of "
We converted over from phpBB about a week ago and it appears that anywhere we had a " we now have a \". What's the best way to get this resolved? I see it in text of posts and here and there in subjects and signatures as well. Was thinking this will probably require running a SQL script but not sure what that would be.Tags: None
-
Originally posted by siteworthy...this will probably require running a SQL script...
For posts...Code:UPDATE post SET pagetext = replace(pagetext,'\\"', '"') WHERE pagetext LIKE '%\\\\"%'
Code:UPDATE thread SET title = replace(title,'\\"','"') WHERE title LIKE '%\\\\"%'
Code:UPDATE usertextfield SET signature = replace(signature,'\\"','"') WHERE signature LIKE '%\\\\"%'
Lats...
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment