Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/cache
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-08-29 22:42:40 +0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-08-29 22:42:40 +0400
commit301baf0215cfa3046389b3369f3d43422ff80043 (patch)
tree028007da0a03895e195065d74219e2ac3a40fdac /lib/cache
parent8d490b9880368a6fd5fcd65964e1f23e6ed350eb (diff)
$storage shouldn't be static in OC_Cache_File
Diffstat (limited to 'lib/cache')
-rw-r--r--lib/cache/file.php2
1 files changed, 1 insertions, 1 deletions
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;