summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorin Peter <github@florin-peter.de>2013-05-16 22:39:09 +0200
committerFlorin Peter <github@florin-peter.de>2013-05-16 22:39:09 +0200
commitd40d6aa3581fdacfc10532cfcfc2dc20835817d1 (patch)
treeeadf942c6189a173c1baf8b989eb62bc13472955
parent95297c246970f5e185b94cbc320b28d88a7c0d6d (diff)
downloadnextcloud-server-d40d6aa3581fdacfc10532cfcfc2dc20835817d1.tar.gz
nextcloud-server-d40d6aa3581fdacfc10532cfcfc2dc20835817d1.zip
fix typo in addRecoveryKeys
-rw-r--r--apps/files_encryption/lib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php
index fab807b0141..038ec78bbdb 100644
--- a/apps/files_encryption/lib/util.php
+++ b/apps/files_encryption/lib/util.php
@@ -1325,7 +1325,7 @@ class Util {
foreach ($dirContent as $item) {
$filePath = substr($item['path'], 25);
if ($item['type'] == 'dir') {
- $this->addRecoveryKey($filePath.'/');
+ $this->addRecoveryKeys($filePath.'/');
} else {
$session = new Session(new \OC_FilesystemView('/'));
$sharingEnabled = \OCP\Share::isEnabled();