diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-29 14:42:40 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-29 14:42:40 -0400 |
commit | 301baf0215cfa3046389b3369f3d43422ff80043 (patch) | |
tree | 028007da0a03895e195065d74219e2ac3a40fdac /lib/cache | |
parent | 8d490b9880368a6fd5fcd65964e1f23e6ed350eb (diff) | |
download | nextcloud-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.php | 2 |
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; |