summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-08-12 13:59:49 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2013-08-12 13:59:49 +0200
commitb982868c14ea66f0241b4a801f92fdd594fcca3b (patch)
tree70cf2b2fae8ef5b234b3cc9537c6136e09bc09d9
parentd7dd2ee465fd7b2cba3fdd01f010f208fce955d4 (diff)
downloadnextcloud-server-b982868c14ea66f0241b4a801f92fdd594fcca3b.tar.gz
nextcloud-server-b982868c14ea66f0241b4a801f92fdd594fcca3b.zip
fix array declaration
-rw-r--r--apps/files_encryption/lib/util.php2
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) {