summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-06-15 19:56:15 +0200
committerRobin Appelman <icewind@owncloud.com>2012-06-15 19:56:15 +0200
commitf06c08a63742de9adea4a146a4480b71ad254f20 (patch)
tree6607d1fc4d31c33190914fb373c9f6e0a526da63 /apps/files_encryption
parenta9a424a51982396943e9c3353c0c36f289dd41ba (diff)
downloadnextcloud-server-f06c08a63742de9adea4a146a4480b71ad254f20.tar.gz
nextcloud-server-f06c08a63742de9adea4a146a4480b71ad254f20.zip
cleanup oc_filecache, splitting it in several parts and using the new hasUpdated
Diffstat (limited to 'apps/files_encryption')
-rw-r--r--apps/files_encryption/lib/proxy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php
index 9fd57c0f02b..ad9bcf55f2b 100644
--- a/apps/files_encryption/lib/proxy.php
+++ b/apps/files_encryption/lib/proxy.php
@@ -59,7 +59,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{
* @return bool
*/
private static function isEncrypted($path){
- $metadata=OC_FileCache::getCached($path,'');
+ $metadata=OC_FileCache_Cached::get($path,'');
return isset($metadata['encrypted']) and (bool)$metadata['encrypted'];
}