From 3ce932d4eeae9e9c302782c633c5d9419c5295da Mon Sep 17 00:00:00 2001 From: Lina Wolf Date: Tue, 16 Apr 2024 05:16:31 +0000 Subject: [PATCH] [DOCS] Correct code example in Changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove excess bracket Releases: main, 12.4 Resolves: #103635 Change-Id: Ie9ea1f03457177eeb6be7abb788c05bd2bf64e8c Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83832 Tested-by: core-ci Tested-by: Stefan Bürk Tested-by: Oliver Bartsch Reviewed-by: Stefan Bürk Reviewed-by: Oliver Bartsch --- .../Changelog/12.4/Deprecation-100596-GeneralUtility_GET.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Changelog/12.4/Deprecation-100596-GeneralUtility_GET.rst b/Documentation/Changelog/12.4/Deprecation-100596-GeneralUtility_GET.rst index eda11264ba..ea998f4e15 100644 --- a/Documentation/Changelog/12.4/Deprecation-100596-GeneralUtility_GET.rst +++ b/Documentation/Changelog/12.4/Deprecation-100596-GeneralUtility_GET.rst @@ -62,7 +62,7 @@ Typical code: $value = GeneralUtility::_GET('tx_scheduler'); // After - $value = $request->getQueryParams()['tx_scheduler']) ?? null; + $value = $request->getQueryParams()['tx_scheduler'] ?? null; .. index:: PHP-API, FullyScanned, ext:core