---
title: "Breaking: #75493 - Evaluate \"boolean /stdWrap\" properties correctly"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-75493"
source: "Changelog/8.2/Breaking-75493-EvaluateBooleanStdWrapPropertiesCorrectly.rst"
typo3-version: "8.2"
typo3-major: 8
type: "breaking"
issue: 75493
forge: "https://forge.typo3.org/issues/75493"
tags: ["TypoScript", "Frontend"]
rendered: "2026-09-20T05:05:02+00:00"
---

# Breaking: #75493 - Evaluate "boolean /stdWrap" properties correctly {#breaking-75493}

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

## Description {#description}

stdWrap sub-properties on boolean properties were not evaluated correctly unless the
property itself was explicitly set.

Example: `page.10.value.prioriCalc.wrap =` without `page.10.value.prioriCalc =`

## Impact {#impact}

It is now possible to reliably use stdWrap sub-properties on boolean properties.

## Affected Installations {#affected-installations}

Earlier installations can be affected if they contain TypoScript that triggers the bug.

Test case:

```typoscript
page = PAGE
page.10 = TEXT
page.10.value = 1+1
page.10.value.prioriCalc.wrap =
```

Result was: 2
Correct result: 1+1

For some installations, the bug fix will make the TypoScript work as intended.
Other installations might accidentally rely on the broken code.

In the latter case, the TypoScript can be changed to:

```typoscript
page = PAGE
page.10 = TEXT
page.10.value = 1+1
page.10.value.prioriCalc = 1
```

## Migration {#migration}

The usage of stdWrap sub-properties on boolean properties needs to be checked and possibly adapted to fit the fixed behavior.
