summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-06-15 23:11:55 +0200
committerRobin Appelman <icewind@owncloud.com>2012-06-15 23:11:55 +0200
commit03951ccc6b4d710e2e21d4344842a7c310453871 (patch)
tree49befdab876b5c3febba638037f1a875f54a4ab1
parent19bfe214010e4cc3730d9718def20b88d379fed5 (diff)
downloadnextcloud-server-03951ccc6b4d710e2e21d4344842a7c310453871.tar.gz
nextcloud-server-03951ccc6b4d710e2e21d4344842a7c310453871.zip
fix encryption proxy for updated filecache
-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 ad9bcf55f2b..b9e719448a3 100644
--- a/apps/files_encryption/lib/proxy.php
+++ b/apps/files_encryption/lib/proxy.php
@@ -67,7 +67,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{
if(self::shouldEncrypt($path)){
if (!is_resource($data)) {//stream put contents should have been converter to fopen
$data=OC_Crypt::blockEncrypt($data);
- OC_FileCache::put($path,array('encrypted'=>true));
+ OC_FileCache::put($path,array('encrypted'=>true),'');
}
}
}