Hi,

I would like to know how to tell CKEditor not to convert French accents to HTML entities.

I tried to put this in "Custom javascript configuration" into a profile but it's still changing accents to HTML:
CKEDITOR.config.entities = false;
CKEDITOR.config.entities_latin = false;

I cleared the cache of my browser and of Drupal.
I tried removing CKEDITOR and CKEDITOR.config to get just "entities = false;" or "config.entities = false;"
I am not sure of the syntaxe because I didn't find it anywhere.

I know this works with FCKeditor 6.x-2.0-rc2:
FCKConfig.ProcessHTMLEntities = false;
FCKConfig.IncludeLatinEntities = false;

CommentFileSizeAuthor
#3 ckeditor-692558.patch910 bytesmephir

Comments

mephir’s picture

Temporarily add above code to ckeditor.config.js:
config.entities = false;
I fix this bug immediately.

mephir’s picture

Assigned: Unassigned » mephir
Category: support » bug

Problems with boolean config values in custom javascript configuration.

mephir’s picture

Status: Active » Needs review
StatusFileSize
new910 bytes

Here is a patch.

j0nathan’s picture

Hi,

Patch #3 works with this in "Custom javascript configuration" into a profile:
CKEDITOR.config.entities = false;
CKEDITOR.config.entities_latin = false;

Thank you very much.

mephir’s picture

Status: Needs review » Fixed

Changes commited to cvs.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

cihanyilmaz88’s picture

Hey all,

Where can i put this patch? Please explaint it some more, i am newbie at this work...