From b982868c14ea66f0241b4a801f92fdd594fcca3b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 12 Aug 2013 13:59:49 +0200 Subject: [PATCH] fix array declaration --- apps/files_encryption/lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 979b0fac40..8819b0f972 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -766,7 +766,7 @@ class Util { $versionStatus = \OCP\App::isEnabled('files_versions'); \OC_App::disable('files_versions'); - $decryptedFiles[] = array(); + $decryptedFiles = array(); // Encrypt unencrypted files foreach ($found['encrypted'] as $encryptedFile) { -- GitLab