---
title: "Deprecation: #73068 - Deprecated \"default\" argument on f:case"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-73068"
source: "Changelog/8.0/Deprecation-73068-DeprecatedDefaultArgumentOnFcase.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Deprecation: #73068 - Deprecated "default" argument on f:case

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

## Description

Due to the switch to Fluid standalone, the following template markup is not supported anymore:

```html
<f:case default="true"> ... </f:case>
```

It must be changed to read:

```html
<f:defaultCase> ... </f:defaultCase>
```

A compatibility layer is in place which logs the deprecation.

## Impact

Use of "default" argument on f:case will trigger a deprecation log entry.

## Affected Installations

Any TYPO3 site which uses f:case with argument "default" regardless of the argument value.

## Migration

Switch `f:case` to `f:defaultCase` for the case node that is your default case.
