From 4bd83615b6ddf002f7880a77759ae4b228baee14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Fritz?= Date: Sun, 12 May 2019 22:08:58 +0200 Subject: [PATCH] fix type of pageNotFound_handling --- Classes/Service/PageRenderingService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Service/PageRenderingService.php b/Classes/Service/PageRenderingService.php index 3d4800e..9ed0fe2 100644 --- a/Classes/Service/PageRenderingService.php +++ b/Classes/Service/PageRenderingService.php @@ -27,7 +27,7 @@ public static function renderPageAndExit(int $pageUid, int $languageUid, $tsfe=n // we're messing with TSFE here, but hey we're exit anyway // we don't want to go in a 404 loop - $GLOBALS['TYPO3_CONF_VARS']['FE']['pageNotFound_handling'] = []; + $GLOBALS['TYPO3_CONF_VARS']['FE']['pageNotFound_handling'] = ''; // override the requested page $tsfe->id = $pageUid;