From 03951ccc6b4d710e2e21d4344842a7c310453871 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 15 Jun 2012 23:11:55 +0200 Subject: [PATCH] fix encryption proxy for updated filecache --- apps/files_encryption/lib/proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),''); } } } -- 2.39.5