From d5e71072c07b5035239e890ab29eb5e25e6bda14 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Mon, 1 Dec 2014 15:29:45 -0700 Subject: [PATCH] Should fix the double-caching issues - hopefully no repercussions! --- system/src/Grav/Common/Cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Cache.php b/system/src/Grav/Common/Cache.php index 9da3974a8..50d748b7e 100644 --- a/system/src/Grav/Common/Cache.php +++ b/system/src/Grav/Common/Cache.php @@ -73,7 +73,7 @@ class Cache extends Getters $this->driver = $this->getCacheDriver(); // Set the cache namespace to our unique key - $this->driver->setNamespace($this->key); + // $this->driver->setNamespace($this->key); } /**