diff --git a/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php b/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php index df6ddb51..5a2b4e2e 100644 --- a/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php +++ b/Classes/Listener/ManipulateBackendLayoutColPosConfigurationForPage.php @@ -43,8 +43,8 @@ public function __invoke(ManipulateBackendLayoutColPosConfigurationForPageEvent $cType = $container->getCType(); $configuration = $this->tcaRegistry->getContentDefenderConfiguration($cType, $e->colPos); $e->configuration = [ - 'allowedContentTypes' => $configuration['allowedContentTypes'], - 'disallowedContentTypes' => $configuration['disallowedContentTypes'], + 'allowedContentTypes' => $configuration['allowedContentTypes'] ?? '', + 'disallowedContentTypes' => $configuration['disallowedContentTypes'] ?? '', ]; }