aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-10-05 13:56:02 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-10-05 13:56:02 +0200
commitcab0be6eedef14c419a2c94dce0461418e5f9cf8 (patch)
treef3b4cd05aed7c71d1596dcce1ceb30bd685ff4b9 /lib
parentf4885f6da3048d90d44cd7e78b02e4305b0717dc (diff)
parentbf82015254941a74dfcd00d8b509a2f2a0734904 (diff)
downloadnextcloud-server-cab0be6eedef14c419a2c94dce0461418e5f9cf8.tar.gz
nextcloud-server-cab0be6eedef14c419a2c94dce0461418e5f9cf8.zip
Merge pull request #19582 from owncloud/fix_19456
add some output to explain the pre-conditions for decrypt-all
Diffstat (limited to 'lib')
-rw-r--r--lib/private/encryption/decryptall.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/encryption/decryptall.php b/lib/private/encryption/decryptall.php
index c1875f16abd..e19ee6b745f 100644
--- a/lib/private/encryption/decryptall.php
+++ b/lib/private/encryption/decryptall.php
@@ -119,6 +119,9 @@ class DecryptAll {
foreach ($encryptionModules as $moduleDesc) {
/** @var IEncryptionModule $module */
$module = call_user_func($moduleDesc['callback']);
+ $this->output->writeln('');
+ $this->output->writeln('Prepare "' . $module->getDisplayName() . '"');
+ $this->output->writeln('');
if ($module->prepareDecryptAll($this->input, $this->output, $user) === false) {
$this->output->writeln('Module "' . $moduleDesc['displayName'] . '" does not support the functionality to decrypt all files again or the initialization of the module failed!');
return false;