diff --git a/htdocs/theme/eldy/ckeditor/config.js b/htdocs/theme/eldy/ckeditor/config.js
index 50bf77c00ff..e041516a292 100644
--- a/htdocs/theme/eldy/ckeditor/config.js
+++ b/htdocs/theme/eldy/ckeditor/config.js
@@ -11,6 +11,7 @@ CKEDITOR.editorConfig = function( config )
config.enterMode = CKEDITOR.ENTER_BR;
//config.forceSimpleAmpersand = true; // When you put a
into the textarea, and go into "source", then ckeditor change the & into &. We don't want this. But this option does not fix this.
//config.entities = false; // When you put a
into the textarea, and go into "source", then ckeditor change the & into &. We don't want this. But this option does not fix this.
+ //config.entities_greek = false;
config.resize_enabled = false;
//config.resize_maxHeight = 3000;
//config.resize_maxWidth = 3000;
diff --git a/htdocs/theme/md/ckeditor/config.js b/htdocs/theme/md/ckeditor/config.js
index 50ff0cc6eed..acd38268f8f 100644
--- a/htdocs/theme/md/ckeditor/config.js
+++ b/htdocs/theme/md/ckeditor/config.js
@@ -9,6 +9,9 @@ CKEDITOR.editorConfig = function( config )
// http://docs.cksource.com/CKEditor_3.x/Developers_Guide
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html
config.enterMode = CKEDITOR.ENTER_BR;
+ //config.forceSimpleAmpersand = true; // When you put a
into the textarea, and go into "source", then ckeditor change the & into &. We don't want this. But this option does not fix this.
+ //config.entities = false; // When you put a
into the textarea, and go into "source", then ckeditor change the & into &. We don't want this. But this option does not fix this.
+ //config.entities_greek = false;
config.resize_enabled = false;
//config.resize_maxHeight = 3000;
//config.resize_maxWidth = 3000;