diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-11-27 07:39:03 -0800 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-11-27 07:39:03 -0800 |
commit | 40231c08cf617b5909dee778372d6b1b8cdd5bcf (patch) | |
tree | 52e081bc8577f78505ea80fc7158eb9235c7ed59 /apps/files_encryption/lib/util.php | |
parent | 5b7b0536346a4a6608e0b294b6784ac5ff3b142a (diff) | |
parent | 9fb71af98850ad6638c4238ae0938972a9f23b50 (diff) | |
download | nextcloud-server-40231c08cf617b5909dee778372d6b1b8cdd5bcf.tar.gz nextcloud-server-40231c08cf617b5909dee778372d6b1b8cdd5bcf.zip |
Merge pull request #5977 from owncloud/encryption_enable_public_upload
Encryption enable public upload
Diffstat (limited to 'apps/files_encryption/lib/util.php')
-rw-r--r-- | apps/files_encryption/lib/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 4ffc72d1531..33ab3f56965 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1093,8 +1093,8 @@ class Util { // Save the recrypted key to it's owner's keyfiles directory // Save new sharekeys to all necessary user directory if ( - !Keymanager::setFileKey($this->view, $filePath, $multiEncKey['data']) - || !Keymanager::setShareKeys($this->view, $filePath, $multiEncKey['keys']) + !Keymanager::setFileKey($this->view, $this, $filePath, $multiEncKey['data']) + || !Keymanager::setShareKeys($this->view, $this, $filePath, $multiEncKey['keys']) ) { \OCP\Util::writeLog('Encryption library', |