summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
Diffstat (limited to 'resources')
-rw-r--r--resources/views/modules/ckeditor/ckeditor-js.phtml3
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/views/modules/ckeditor/ckeditor-js.phtml b/resources/views/modules/ckeditor/ckeditor-js.phtml
index d443da103f..8dcc31172b 100644
--- a/resources/views/modules/ckeditor/ckeditor-js.phtml
+++ b/resources/views/modules/ckeditor/ckeditor-js.phtml
@@ -11,6 +11,9 @@
CKEDITOR.config.removePlugins = "forms,newpage,preview,print,save,templates,flash,iframe";
CKEDITOR.config.extraAllowedContent = "area[shape,coords,href,target,alt,title];map[name];img[usemap];*[class,style]";
+ // Do not convert é to é in the editor
+ CKEDITOR.config.entities = false;
+
// Activate the editor
document.querySelectorAll("textarea.html-edit").forEach((node) => {
CKEDITOR.replace(node.id);