TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,53 @@
.. include:: /Includes.rst.txt
.. _breaking-101192-1688017013:
==============================================================
Breaking: #101192 - Remove fallback for CKEditor removePlugins
==============================================================
See :issue:`101192`
Description
===========
Remove fallback for CKEditor configuration `removePlugins` as a string.
Impact
======
Runtime Javascript errors can occur if the CKEditor configuration
`removePlugins` isn't an array.
Affected installations
======================
TYPO3 installation which have CKEditor configuration `removePlugins`
configured as a string.
Migration
=========
Adjust your CKEditor configuration and pass :yaml:`removePlugins` as array.
Before
------
.. code-block:: yaml
editor:
config:
removePlugins: image
After
-----
.. code-block:: yaml
editor:
config:
removePlugins:
- image
.. index:: Backend, NotScanned, RTE, ext:rte_ckeditor