diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-08-12 13:59:49 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-08-12 13:59:49 +0200 |
commit | b982868c14ea66f0241b4a801f92fdd594fcca3b (patch) | |
tree | 70cf2b2fae8ef5b234b3cc9537c6136e09bc09d9 | |
parent | d7dd2ee465fd7b2cba3fdd01f010f208fce955d4 (diff) | |
download | nextcloud-server-b982868c14ea66f0241b4a801f92fdd594fcca3b.tar.gz nextcloud-server-b982868c14ea66f0241b4a801f92fdd594fcca3b.zip |
fix array declaration
-rw-r--r-- | apps/files_encryption/lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 979b0fac407..8819b0f972a 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) { |