Skip to content
Snippets Groups Projects
Commit fc5cce9f authored by Benni Mack's avatar Benni Mack Committed by Georg Ringer
Browse files

[BUGFIX] Revert breaking change in BackendLayout class

While cleaning up BackendLayout code, a
"declare(strict_types=1);" line was introduced,
which made existing v13-compatible PHP code
break. This is now reverted in order to smoothen
the upgrade path to v13 LTS.

Resolves: #104099
Related: #103365
Releases: main
Change-Id: Ic0de7e903da365178d5e417ff5eeb60c00f1b516
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84701


Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent c5278c5f
Branches
Tags
No related merge requests found
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......@@ -22,6 +20,9 @@ use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Class to represent a backend layout.
*
* # @deprecated: put the following line in TYPO3 v14.0, see #104099 and #103365
* # declare(strict_types=1);
*/
class BackendLayout
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment