$storage shouldn't be static in OC_Cache_File

This commit is contained in:
Michael Gapczynski 2012-08-29 14:42:40 -04:00
parent 8d490b9880
commit 301baf0215
1 changed files with 1 additions and 1 deletions

2
lib/cache/file.php vendored
View File

@ -8,7 +8,7 @@
class OC_Cache_File{
protected static $storage;
protected $storage;
protected function getStorage() {
if (isset($this->storage)) {
return $this->storage;