diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-05-04 12:36:50 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-05-04 12:36:50 +0200 |
commit | 10144bd7f5b88e4437cb5be4c05c4a3652a80b1c (patch) | |
tree | 47c155b1ba21a3f1ecb5dbf2b20c1c5496dd6995 /core/command/encryption/disable.php | |
parent | 17fedc80dac7acd3d85f1f132455e94d4fd920c6 (diff) | |
download | nextcloud-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.php | 2 |
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>'); } } } |