diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-05 22:08:16 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-05-06 15:31:05 +0200 |
commit | 35292eb66cdfa263ce5e6225ae871167378ee98b (patch) | |
tree | 0de38c79b8ca336d071183e231b399fa9fac3599 /apps/encryption/lib | |
parent | 6633514a980b3246bdd4c26a1b890d12306f47f8 (diff) | |
download | nextcloud-server-35292eb66cdfa263ce5e6225ae871167378ee98b.tar.gz nextcloud-server-35292eb66cdfa263ce5e6225ae871167378ee98b.zip |
rename to 'Default encryption module'
Diffstat (limited to 'apps/encryption/lib')
-rw-r--r-- | apps/encryption/lib/crypto/encryption.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php index a4abcd7dc5a..1bc42ce032f 100644 --- a/apps/encryption/lib/crypto/encryption.php +++ b/apps/encryption/lib/crypto/encryption.php @@ -34,7 +34,7 @@ use OCP\ILogger; class Encryption implements IEncryptionModule { const ID = 'OC_DEFAULT_MODULE'; - const DISPLAY_NAME = 'ownCloud Default Encryption'; + const DISPLAY_NAME = 'Default encryption module'; /** * @var Crypt @@ -287,7 +287,7 @@ class Encryption implements IEncryptionModule { */ public function update($path, $uid, array $accessList) { $fileKey = $this->keyManager->getFileKey($path, $uid); - + if (!empty($fileKey)) { $publicKeys = array(); |