diff options
author | Florin Peter <github@florin-peter.de> | 2013-05-16 22:39:09 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-05-16 22:39:09 +0200 |
commit | d40d6aa3581fdacfc10532cfcfc2dc20835817d1 (patch) | |
tree | eadf942c6189a173c1baf8b989eb62bc13472955 | |
parent | 95297c246970f5e185b94cbc320b28d88a7c0d6d (diff) | |
download | nextcloud-server-d40d6aa3581fdacfc10532cfcfc2dc20835817d1.tar.gz nextcloud-server-d40d6aa3581fdacfc10532cfcfc2dc20835817d1.zip |
fix typo in addRecoveryKeys
-rw-r--r-- | apps/files_encryption/lib/util.php | 2 |
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(); |