aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/encryption/update.php
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-03-27 11:46:32 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2015-03-27 11:51:53 +0100
commitb5fad75e579b9aeada87e63b4e7866956e1e20ff (patch)
tree7b607e0f06ea595ae02e66900ecd7b2ee98ee121 /lib/private/encryption/update.php
parentc6be1ba8d35ceb398fdbd0bd7b9e4491119092a0 (diff)
downloadnextcloud-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/encryption/update.php')
-rw-r--r--lib/private/encryption/update.php2
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);
}
}