summaryrefslogtreecommitdiffstats
path: root/lib/private/encryption
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-05-05 22:08:16 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-05-06 15:31:05 +0200
commit35292eb66cdfa263ce5e6225ae871167378ee98b (patch)
tree0de38c79b8ca336d071183e231b399fa9fac3599 /lib/private/encryption
parent6633514a980b3246bdd4c26a1b890d12306f47f8 (diff)
downloadnextcloud-server-35292eb66cdfa263ce5e6225ae871167378ee98b.tar.gz
nextcloud-server-35292eb66cdfa263ce5e6225ae871167378ee98b.zip
rename to 'Default encryption module'
Diffstat (limited to 'lib/private/encryption')
-rw-r--r--lib/private/encryption/manager.php2
-rw-r--r--lib/private/encryption/util.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/encryption/manager.php b/lib/private/encryption/manager.php
index 1a42646daf6..45f45045643 100644
--- a/lib/private/encryption/manager.php
+++ b/lib/private/encryption/manager.php
@@ -79,7 +79,7 @@ class Manager implements IManager {
$oldEncryption = $this->config->getAppValue('files_encryption', 'installed_version');
if (!empty($oldEncryption)) {
$warning = 'Installation is in transit between the old Encryption (ownCloud <= 8.0)
- and the new encryption. Please enable the "ownCloud Default Encryption Module"
+ and the new encryption. Please enable the "Default encryption module"
and run \'occ encryption:migrate\'';
$this->logger->warning($warning);
return false;
diff --git a/lib/private/encryption/util.php b/lib/private/encryption/util.php
index 032ac83f37e..5ea9b8bdeaf 100644
--- a/lib/private/encryption/util.php
+++ b/lib/private/encryption/util.php
@@ -114,7 +114,7 @@ class Util {
// ownCloud <= 8.0 with the old encryption
$id = \OCA\Encryption\Crypto\Encryption::ID;
} else {
- throw new ModuleDoesNotExistsException('ownCloud default encryption module missing');
+ throw new ModuleDoesNotExistsException('Default encryption module missing');
}
}