summaryrefslogtreecommitdiffstats
path: root/lib/cache
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-08-29 14:42:40 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-08-29 14:42:40 -0400
commit301baf0215cfa3046389b3369f3d43422ff80043 (patch)
tree028007da0a03895e195065d74219e2ac3a40fdac /lib/cache
parent8d490b9880368a6fd5fcd65964e1f23e6ed350eb (diff)
downloadnextcloud-server-301baf0215cfa3046389b3369f3d43422ff80043.tar.gz
nextcloud-server-301baf0215cfa3046389b3369f3d43422ff80043.zip
$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;