From a0ae3acb21a7c1c29e5ef7c48c132eb3ae9c449a Mon Sep 17 00:00:00 2001 From: Peter Unterthurner Date: Wed, 1 Dec 2021 11:37:37 +0100 Subject: [PATCH] Update ConsentController.php Changed check for AbstractTemplateView instead of TemplateView for Typo3 11 compatibility --- Classes/Controller/ConsentController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Controller/ConsentController.php b/Classes/Controller/ConsentController.php index 295c45c..b9465ec 100755 --- a/Classes/Controller/ConsentController.php +++ b/Classes/Controller/ConsentController.php @@ -86,7 +86,7 @@ public function listAction() */ protected function renderAssetsForRequest($request) { - if (!$this->view instanceof \TYPO3Fluid\Fluid\View\TemplateView) { + if (!$this->view instanceof \TYPO3Fluid\Fluid\View\AbstractTemplateView) { return; } @@ -300,4 +300,4 @@ private function backwardsCompatibility($klaroConfig) return $klaroConfig; } -} \ No newline at end of file +}