diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-17 17:46:33 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-09-17 17:46:33 +0200 |
commit | fe86182dac387817258942a46905f2b801862d4d (patch) | |
tree | 80f233a9994a52e350938058b99f46a527f427da /lib/filechunking.php | |
parent | 9b420e8660404de27e3af629bfca188ae90cf7bd (diff) | |
download | nextcloud-server-fe86182dac387817258942a46905f2b801862d4d.tar.gz nextcloud-server-fe86182dac387817258942a46905f2b801862d4d.zip |
OC_Cache namespace changes and add UserCache to server container.
Refs #4863
Diffstat (limited to 'lib/filechunking.php')
-rw-r--r-- | lib/filechunking.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filechunking.php b/lib/filechunking.php index e6d69273a44..313a6ee87d2 100644 --- a/lib/filechunking.php +++ b/lib/filechunking.php @@ -29,7 +29,7 @@ class OC_FileChunking { protected function getCache() { if (!isset($this->cache)) { - $this->cache = new OC_Cache_File(); + $this->cache = new \OC\Cache\File(); } return $this->cache; } |