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'])) {