---
title: "Breaking: #60561 - Default TypoScript Constants Removed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-60561"
source: "Changelog/7.0/Breaking-60561-DefaultTypoScriptConstantsRemoved.rst"
typo3-version: "7.0"
typo3-major: 7
type: "breaking"
issue: 60561
forge: "https://forge.typo3.org/issues/60561"
tags: ["TypoScript", "Frontend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #60561 - Default TypoScript Constants Removed {#breaking-60561}

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

## Description {#description}

These default TypoScript constants were dropped:

-   `{$_clear}`
-   `{$_blackBorderWrap}`
-   `{$_tableWrap}`
-   `{$_tableWrap_DEBUG}`
-   `{$_stdFrameParams}`
-   `{$_stdFramesetParams}`

## Impact {#impact}

Frontend output may change.

## Affected installations {#affected-installations}

A TYPO3 instance is affected if own TypoScript uses the above mentioned TypoScript constants.

## Migration {#migration}

Either remove usage of the above constants or add a snippet at an early point in TypoScript for backwards compatibility.

```typoscript
_clear = <img src="clear.gif" width="1" height="1" alt="" />
_blackBorderWrap = <table border="0" bgcolor="black" cellspacing="0" cellpadding="1"><tr><td> | </td></tr></table>
_tableWrap = <table border="0" cellspacing="0" cellpadding="0"> | </table>
_tableWrap_DEBUG = <table border="1" cellspacing="0" cellpadding="0"> | </table>
_stdFrameParams = frameborder="no" marginheight="0" marginwidth="0" noresize="noresize"
_stdFramesetParams = 'border="0" framespacing="0" frameborder="no"
```
