---
title: "Feature: #90213 - Support 'bit and' in TypoScript stdWrap_if"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-90213"
source: "Changelog/10.3/Feature-90213-SupportBitAndInTypoScriptStdWrapIf.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #90213 - Support 'bit and' in TypoScript stdWrap_if

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

## Description

It is now possible to use `bitAnd` within TypoScript `if`.

TYPO3 uses bits to store radio and checkboxes via TCA.
Without this feature one would need to check whether any possible bit value is in a
list. With this feature a simple comparison whether the expected value is part of the
bit set is possible.

## Example

An example usage could look like this:

```typoscript
hideDefaultLanguageOfPage = TEXT
hideDefaultLanguageOfPage {
  value = 0
  value {
    override = 1
    override.if {
      bitAnd.field = l18n_cfg
      value = 1
    }
  }
}
```
