]> source.dussan.org Git - nextcloud-server.git/commitdiff
$storage shouldn't be static in OC_Cache_File
authorMichael Gapczynski <mtgap@owncloud.com>
Wed, 29 Aug 2012 18:42:40 +0000 (14:42 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Wed, 29 Aug 2012 18:42:40 +0000 (14:42 -0400)
lib/cache/file.php

index ed5212bc3d7495a35d00d93b5eef4fc4fcfe9bae..b9073dee09ab470c4b99e9ac4522f04365ddbc71 100644 (file)
@@ -8,7 +8,7 @@
 
 
 class OC_Cache_File{
-       protected static $storage;
+       protected $storage;
        protected function getStorage() {
                if (isset($this->storage)) {
                        return $this->storage;