From 33cfcf1abbaca5a7ee7aeab01b05f6ec5f77ff32 Mon Sep 17 00:00:00 2001 From: Philipp Dieter Date: Thu, 30 Jul 2020 01:17:37 +0200 Subject: [PATCH] [BUGFIX] Disable getting nonexisting cache --- Classes/Controller/ActionController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Classes/Controller/ActionController.php b/Classes/Controller/ActionController.php index c3ae6bf..ba237c7 100644 --- a/Classes/Controller/ActionController.php +++ b/Classes/Controller/ActionController.php @@ -142,9 +142,9 @@ class ActionController extends BaseController $this->cacheManager = $this->objectManager->get( CacheManager::class ); - $this->cache = $this->cacheManager->getCache( - 'tobereplaced' //TODO: Replaceme - ); + //$this->cache = $this->cacheManager->getCache( + // 'tobereplaced' //TODO: Replaceme + //); $this->logManager = $this->objectManager->get( LogManager::Class );