Skip to content

Commit

Permalink
Fixed issue #09278: simple quote are replaced by HTML entities with H…
Browse files Browse the repository at this point in the history
…TML editor

Dev: we need entities AND basicEntities to false
  • Loading branch information
Shnoulle committed Oct 10, 2014
1 parent f7572e9 commit 79ce4d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/admin/ckeditor-config.js
Expand Up @@ -14,8 +14,8 @@ CKEDITOR.editorConfig = function( config )
config.toolbarCanCollapse = false;
config.resize_enabled = false;
config.autoParagraph = false;
config.basicEntities = false;

config.basicEntities = false; // For <, >, & ( and nbsp)
config.entities = false; // For ' ( and a lot of other but not <>&)
if($('html').attr('dir') == 'rtl') {
config.contentsLangDirection = 'rtl';
}
Expand Down

0 comments on commit 79ce4d0

Please sign in to comment.