diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-06-15 23:11:55 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-06-15 23:11:55 +0200 |
commit | 03951ccc6b4d710e2e21d4344842a7c310453871 (patch) | |
tree | 49befdab876b5c3febba638037f1a875f54a4ab1 | |
parent | 19bfe214010e4cc3730d9718def20b88d379fed5 (diff) | |
download | nextcloud-server-03951ccc6b4d710e2e21d4344842a7c310453871.tar.gz nextcloud-server-03951ccc6b4d710e2e21d4344842a7c310453871.zip |
fix encryption proxy for updated filecache
-rw-r--r-- | apps/files_encryption/lib/proxy.php | 2 |
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),''); } } } |