From a2aec3f939cde94dd6058aa9ca152d8ef58eeb99 Mon Sep 17 00:00:00 2001 From: Maik Kempe Date: Mon, 16 Mar 2026 11:25:19 +0100 Subject: [PATCH] [BUGFIX] Fixed cast of record Uid in `ManipulateBackendLayoutColPosConfigurationForPage` --- .../ManipulateBackendLayoutColPosConfigurationForPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php b/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php index be42c5f6..791d9fa6 100644 --- a/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php +++ b/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php @@ -67,7 +67,7 @@ private function getParentUid(?ServerRequestInterface $request): ?int } if (isset($queryParams['edit']['tt_content'])) { $recordUid = array_keys($queryParams['edit']['tt_content'])[0]; - $recordUid = (int)abs($recordUid); + $recordUid = abs((int)$recordUid); // TcaCTypeItems: edit record $record = BackendUtility::getRecord('tt_content', $recordUid, 'tx_container_parent'); if (isset($record['tx_container_parent'])) {