summaryrefslogtreecommitdiffstats
path: root/core/command/encryption/disable.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-05-04 12:36:50 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-05-04 12:36:50 +0200
commit10144bd7f5b88e4437cb5be4c05c4a3652a80b1c (patch)
tree47c155b1ba21a3f1ecb5dbf2b20c1c5496dd6995 /core/command/encryption/disable.php
parent17fedc80dac7acd3d85f1f132455e94d4fd920c6 (diff)
downloadnextcloud-server-10144bd7f5b88e4437cb5be4c05c4a3652a80b1c.tar.gz
nextcloud-server-10144bd7f5b88e4437cb5be4c05c4a3652a80b1c.zip
Display a message when there is a problem with the default module
Diffstat (limited to 'core/command/encryption/disable.php')
-rw-r--r--core/command/encryption/disable.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/encryption/disable.php b/core/command/encryption/disable.php
index b5fce5cbd90..e3c0b8d7489 100644
--- a/core/command/encryption/disable.php
+++ b/core/command/encryption/disable.php
@@ -50,7 +50,7 @@ class Disable extends Command {
$output->writeln('Encryption is already disabled');
} else {
$this->config->setAppValue('core', 'encryption_enabled', 'no');
- $output->writeln('Encryption disabled');
+ $output->writeln('<info>Encryption disabled</info>');
}
}
}