Skip to content

Commit

Permalink
Deactivated CKE 4 plugin embedsemantic because it showed the content …
Browse files Browse the repository at this point in the history
…of a link instead of just the link.
  • Loading branch information
jepf committed Jan 9, 2024
1 parent f86e8e1 commit d018ea0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 6.5.6 2024-??-??
- 2024-01-08 Updated AdminSystemFiles: Added additional file check.
- 2024-01-08 Fixed rich text editor's field height problems by disabling CKEditor's autogrow plugin. Thanks to Paweł Bogusławski (@pboguslawski). [#526](https://github.com/znuny/Znuny/pull/526)
- 2023-12-22 Deactivated CKE 4 plugin embedsemantic because it showed the content of a link instead of just the link.
- 2023-10-24 Kernel::System::MailQueue::Send now increases number of attempts before sending an email. This prevents the attempts not being increased if the process dies while trying to send an email.

# 6.5.5 2023-12-13
Expand Down
1 change: 1 addition & 0 deletions scripts/Migration/Znuny/UninstallMergedPackages.pm
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ sub Run {
'Znuny4OTRS-UserMaxArticlesPerPage',
'Znuny-BugfixFormInput',
'Znuny-DynamicFieldWebserviceTicketIDPayload',
'Znuny-RichTextEditorLinkFix',
);

PACKAGENAME:
Expand Down
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.UI.RichTextEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Core.UI.RichTextEditor = (function (TargetNS) {

// set default editor config, but allow custom config for other types for editors
/*eslint-disable camelcase */
RemovedCKEditorPlugins = 'devtools,image,flash,mathjax,embed,exportpdf,sourcedialog,bbcode,divarea,elementspath,stylesheetparser,autogrow';
RemovedCKEditorPlugins = 'devtools,image,flash,mathjax,embed,embedsemantic,exportpdf,sourcedialog,bbcode,divarea,elementspath,stylesheetparser,autogrow';
if (!CheckFormID($EditorArea).length) {
RemovedCKEditorPlugins += ',uploadimage';
}
Expand Down

0 comments on commit d018ea0

Please sign in to comment.