I’m trying to figure out what I have inadvertently changed and hope someone here can help out. I have a local copy of Evo 1.0.2 running under XAMPP on Vista. Going back to an old project to test a chunk, I find that quotes are now getting escaped upon saving. So errors are getting thrown.
An example of this would be something like this
<a href="blah">blah description</a>
getting saved and returned as
<a href=\"blah\">blah description</a>
The character encoding on the database is set to UTF-8 and the collation is utf9-general-ci.
Can anyone shed any light on what triggers this? I don’t he know what to Google for!
TIA,
Matt
Hi Matt,
i assume you’re running PHP 5.3 -> magic_quotes_gpc should be turned off
j
Yup, that did the trick. Dunno how that ended up getting changed, but that was in fact the issue. Thanks!
Matt