aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Encryption
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-03-28 10:51:44 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-04-13 12:58:51 +0200
commit4bcb7d88b5cbb8d2c83176062dc76c6213a13c48 (patch)
treec4e7f750cad011dabca80bb1900b9d251821df7c /lib/private/Encryption
parentcf7c3209490c60f03fc90b6a71d5d1e00a9d802e (diff)
downloadnextcloud-server-4bcb7d88b5cbb8d2c83176062dc76c6213a13c48.tar.gz
nextcloud-server-4bcb7d88b5cbb8d2c83176062dc76c6213a13c48.zip
Return the token as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Encryption')
-rw-r--r--lib/private/Encryption/File.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Encryption/File.php b/lib/private/Encryption/File.php
index a1fd8e300d4..f6fd3382cb5 100644
--- a/lib/private/Encryption/File.php
+++ b/lib/private/Encryption/File.php
@@ -94,7 +94,7 @@ class File implements \OCP\Encryption\IFile {
$resultForParents = $this->shareManager->getAccessList($parentNode);
$this->cache[$parent] = $resultForParents;
}
- $userIds = \array_merge($userIds, $resultForParents['users']);
+ $userIds = array_merge($userIds, $resultForParents['users']);
$public = $resultForParents['public'] || !empty($resultForParents['remote']);