---
title: "Breaking: #42543 - Default TypoScript Removed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-42543"
source: "Changelog/7.0/Breaking-42543-DefaultTypoScriptRemoved.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Breaking: #42543 - Default TypoScript Removed

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

## Description

The default TypoScript `styles.insertContent` was removed without substitution.

## Impact

Frontend output may change.

## Affected installations

A TYPO3 instance is affected if its TypoScript operates with `styles.insertContent`. This is pretty unlikely since the styles segment was hidden in the TypoScript Object Browser.

## Migration

Either remove usage of `styles.insertContent` or add a snippet at an early point in TypoScript for backwards compatibility.

```typoscript
styles.insertContent = CONTENT
styles.insertContent {
  table = tt_content
  select {
    orderBy = sorting
    where = colPos=0
    languageField = sys_language_uid
  }
}
```
