summaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-05-19 11:13:33 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-05-19 11:13:33 +0200
commitd90b83725f87825a68b51a32228270d9e9a82ac6 (patch)
tree350792cbaaeaf7e2af9aff2d56e4480463ed5fb5 /apps/encryption/lib
parent9e0cb4460e82a59f238b6aed0e171954ecbda2de (diff)
parent35292eb66cdfa263ce5e6225ae871167378ee98b (diff)
downloadnextcloud-server-d90b83725f87825a68b51a32228270d9e9a82ac6.tar.gz
nextcloud-server-d90b83725f87825a68b51a32228270d9e9a82ac6.zip
Merge pull request #16085 from owncloud/encryption-module-rename
rename to 'Default encryption module'
Diffstat (limited to 'apps/encryption/lib')
-rw-r--r--apps/encryption/lib/crypto/encryption.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php
index df3f9a0997e..f527955b496 100644
--- a/apps/encryption/lib/crypto/encryption.php
+++ b/apps/encryption/lib/crypto/encryption.php
@@ -36,7 +36,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
@@ -304,7 +304,7 @@ class Encryption implements IEncryptionModule {
*/
public function update($path, $uid, array $accessList) {
$fileKey = $this->keyManager->getFileKey($path, $uid);
-
+
if (!empty($fileKey)) {
$publicKeys = array();