$storage shouldn't be static in OC_Cache_File
This commit is contained in:
parent
8d490b9880
commit
301baf0215
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
|
|
||||||
class OC_Cache_File{
|
class OC_Cache_File{
|
||||||
protected static $storage;
|
protected $storage;
|
||||||
protected function getStorage() {
|
protected function getStorage() {
|
||||||
if (isset($this->storage)) {
|
if (isset($this->storage)) {
|
||||||
return $this->storage;
|
return $this->storage;
|
||||||
|
|
Loading…
Reference in New Issue