Fix: We don't need to have data encode with htmlentities are we are now full utf8.

This commit is contained in:
Laurent Destailleur
2010-11-16 11:51:26 +00:00
parent 92be758692
commit b4553a64a7
5 changed files with 16 additions and 13 deletions

View File

@@ -8,4 +8,7 @@ CKEDITOR.editorConfig = function( config )
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
config.entities = false;
config.entities_greek = false;
config.entities_latin = false;
};