---
title: "Breaking: #101192 - Remove fallback for CKEditor removePlugins"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-101192-1688017013"
source: "Changelog/13.0/Breaking-101192-RemoveFallbackRemovePlugins.rst"
typo3-version: "13.0"
typo3-major: 13
type: "breaking"
issue: 101192
forge: "https://forge.typo3.org/issues/101192"
tags: ["Backend", "NotScanned", "RTE", "ext:rte_ckeditor"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Breaking: #101192 - Remove fallback for CKEditor removePlugins {#breaking-101192-1688017013}

See [forge#101192](https://forge.typo3.org/issues/101192)

## Description {#description}

Remove fallback for CKEditor configuration `removePlugins` as a string.

## Impact {#impact}

Runtime Javascript errors can occur if the CKEditor configuration
`removePlugins` isn't an array.

## Affected installations {#affected-installations}

TYPO3 installation which have CKEditor configuration `removePlugins`
configured as a string.

## Migration {#migration}

Adjust your CKEditor configuration and pass `removePlugins` as array.

### Before {#before}

```yaml
editor:
    config:
        removePlugins: image
```

### After {#after}

```yaml
editor:
    config:
        removePlugins:
            - image
```
