From c75c93b23b3c1ad320b7ae49a7bda7fed7fd2a68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20G=C3=BCnther?= Date: Tue, 9 Mar 2021 14:26:59 +0100 Subject: [PATCH] Fix: Limit LayoutPath override to packages of Neos/Neos To prevent exceptions in third party modules we limit the override of the layoutRootPaths to the Neos/Neos backend modules re #9 --- Configuration/Views.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/Views.yaml b/Configuration/Views.yaml index 0a0708d..b0d5a84 100644 --- a/Configuration/Views.yaml +++ b/Configuration/Views.yaml @@ -1,5 +1,5 @@ - - requestFilter: 'parentRequest.isPackage("Neos.Neos") && parentRequest.isController("Backend\Module") && isFormat("html") && !isPackage("Neos.Media.Browser") && !isController("Module\Management\History")' + requestFilter: 'isPackage("Neos.Neos") && parentRequest.isController("Backend\Module") && isFormat("html") && !isPackage("Neos.Media.Browser") && !isController("Module\Management\History")' options: layoutRootPaths: 'Unikka.LoginAs': 'resource://Unikka.LoginAs/Private/Layouts'