Hello,
How can I stop CKEditor from converting double quotes " to " ans single quotes becoming ' to ' ?
I want to do all my typographic conversion separately.
Also, why do only single quotes use a numeric entity code? Using named versions can break RSS feeds if they're included?
Thanks
Ric
How can I stop CKEditor from converting double quotes " to " ans single quotes becoming ' to ' ?
I want to do all my typographic conversion separately.
Also, why do only single quotes use a numeric entity code? Using named versions can break RSS feeds if they're included?
Thanks
Ric
Re: Stop CKEditor converting quotes
I experienced the same problem. What I did was, add this to the config.js:
Re: Stop CKEditor converting quotes
to the url or in front of any "
for example
my url : <a href="/link">
ckeditor sending to my php skript <a href="\"/formular\"">
and a " change to the \"
how can I change this ? or should I do this with php skript ? (deleting \" from string)
EDIT : I add config.entities = false;
but nothing changed
Re: Stop CKEditor converting quotes
That's not a problem of CKEditor, but a configuration of PHP in your server that it's escaping quotes.
Try to use a plain textarea and you'll see the same result.
Re: Stop CKEditor converting quotes
before write or read use stripslashes command
like that
Re: Stop CKEditor converting quotes
Re: Stop CKEditor converting quotes
Works! like Charm.
Thank you very much.