diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-03-27 11:46:32 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-03-27 11:51:53 +0100 |
commit | b5fad75e579b9aeada87e63b4e7866956e1e20ff (patch) | |
tree | 7b607e0f06ea595ae02e66900ecd7b2ee98ee121 /lib/private | |
parent | c6be1ba8d35ceb398fdbd0bd7b9e4491119092a0 (diff) | |
download | nextcloud-server-b5fad75e579b9aeada87e63b4e7866956e1e20ff.tar.gz nextcloud-server-b5fad75e579b9aeada87e63b4e7866956e1e20ff.zip |
add deleteAllFileKeys to public interface and add "uid" as parameter for the
update call
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/encryption/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/encryption/update.php b/lib/private/encryption/update.php index 649cf0285a6..06dc330151e 100644 --- a/lib/private/encryption/update.php +++ b/lib/private/encryption/update.php @@ -104,7 +104,7 @@ class Update { foreach ($allFiles as $path) { $usersSharing = $this->util->getSharingUsersArray($path); - $encryptionModule->update($absPath, $usersSharing); + $encryptionModule->update($absPath, $this->uid, $usersSharing); } } |