From 423c1e2476766d6ac7803c2f0f92944ab6342bb0 Mon Sep 17 00:00:00 2001 From: Aimeos Date: Thu, 27 Dec 2018 13:03:50 +0100 Subject: [PATCH] Adapt to new create() factory method --- lib/custom/src/MAdmin/Cache/Proxy/Flow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/custom/src/MAdmin/Cache/Proxy/Flow.php b/lib/custom/src/MAdmin/Cache/Proxy/Flow.php index f39d72b..128a0fb 100644 --- a/lib/custom/src/MAdmin/Cache/Proxy/Flow.php +++ b/lib/custom/src/MAdmin/Cache/Proxy/Flow.php @@ -50,7 +50,7 @@ protected function getObject() { $siteid = $this->context->getLocale()->getSiteId(); $conf = array( 'siteid' => $this->context->getConfig()->get( 'madmin/cache/prefix' ) . $siteid ); - $this->object = \Aimeos\MW\Cache\Factory::createManager( 'Flow', $conf, $this->cache ); + $this->object = \Aimeos\MW\Cache\Factory::create( 'Flow', $conf, $this->cache ); } return $this->object;