From 65c07eff46b396174e5216a483ccbcbad4b7ff9e Mon Sep 17 00:00:00 2001 From: mjansen Date: Wed, 27 May 2026 14:42:27 +0200 Subject: [PATCH] [FIX] Forum: Restore TinyMCE toolbar when editing posts with inline images Remove toolbar_sticky from the forum-specific TinyMCE profile and set image_advtab to false (aligned with tpl.tinymce.js). Sticky docking hid the toolbar on long thread edit pages after drag-and-drop images were saved as data URIs. https: //mantis.ilias.de/view.php?id=47755 Co-authored-by: Cursor --- components/ILIAS/RTE/templates/default/tpl.tinymce_frm_post.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/ILIAS/RTE/templates/default/tpl.tinymce_frm_post.js b/components/ILIAS/RTE/templates/default/tpl.tinymce_frm_post.js index dbeaeb87c315..3c49512eea30 100755 --- a/components/ILIAS/RTE/templates/default/tpl.tinymce_frm_post.js +++ b/components/ILIAS/RTE/templates/default/tpl.tinymce_frm_post.js @@ -81,10 +81,9 @@ tinymce.init({ plugins: "{ADDITIONAL_PLUGINS}", menubar: false, toolbar: "{BUTTONS_1} {BUTTONS_2} {BUTTONS_3}", - toolbar_sticky: true, toolbar_persist: true, toolbar_mode: 'wrap', - image_advtab: true, + image_advtab: false, image_title: true, images_file_types: "gif, jpg, jpeg, png", file_picker_types: "image",