From 301baf0215cfa3046389b3369f3d43422ff80043 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 14:42:40 -0400 Subject: [PATCH] $storage shouldn't be static in OC_Cache_File --- lib/cache/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cache/file.php b/lib/cache/file.php index ed5212bc3d7..b9073dee09a 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -8,7 +8,7 @@ class OC_Cache_File{ - protected static $storage; + protected $storage; protected function getStorage() { if (isset($this->storage)) { return $this->storage; -- 2.39.5