TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,47 @@
.. include:: /Includes.rst.txt
.. _deprecation-73068:
=============================================================
Deprecation: #73068 - Deprecated "default" argument on f:case
=============================================================
See :issue:`73068`
Description
===========
Due to the switch to Fluid standalone, the following template markup is not supported anymore:
.. code-block:: html
<f:case default="true"> ... </f:case>
It must be changed to read:
.. code-block:: 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.
.. index:: Fluid