diff options
author | Björn Schießle <bjoern@schiessle.org> | 2014-12-19 19:04:44 +0100 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2014-12-19 19:04:44 +0100 |
commit | 8164415b45386cb87e05e6e50cf4b8f3128b2e69 (patch) | |
tree | 1edbf481b6596533be0813d7639277fc9a92b98b /apps/files_encryption/lib/util.php | |
parent | ad6814f9207ac50ad9e3e6f157ec9746c81392e9 (diff) | |
parent | 24993280edcf66f9daa5a5e82428fefef4a3ab56 (diff) | |
download | nextcloud-server-8164415b45386cb87e05e6e50cf4b8f3128b2e69.tar.gz nextcloud-server-8164415b45386cb87e05e6e50cf4b8f3128b2e69.zip |
Merge pull request #12749 from owncloud/server2server-sharing-ng
server to server sharing next generation
Diffstat (limited to 'apps/files_encryption/lib/util.php')
-rw-r--r-- | apps/files_encryption/lib/util.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index ad6948b95a6..4aaf7aa2571 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1207,13 +1207,7 @@ class Util { // handle public access if ($this->isPublic) { - $filename = $path; - $fileOwnerUid = $this->userId; - - return array( - $fileOwnerUid, - $filename - ); + return array($this->userId, $path); } else { // Check that UID is valid |