diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-07 11:30:21 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-07 11:30:21 +0200 |
commit | 85f012512e040c8c666d4de60f73ca6330507090 (patch) | |
tree | aa1a6c4af1b188cabf37f8ef5ede60dc5f82fa05 /core/command | |
parent | e5bc9d06195f95940fda5b600560c11dcd720636 (diff) | |
download | nextcloud-server-85f012512e040c8c666d4de60f73ca6330507090.tar.gz nextcloud-server-85f012512e040c8c666d4de60f73ca6330507090.zip |
Invert the "public" to a "private" method
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/config/listconfigs.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/command/config/listconfigs.php b/core/command/config/listconfigs.php index c93d26cbda4..be3073e54d9 100644 --- a/core/command/config/listconfigs.php +++ b/core/command/config/listconfigs.php @@ -69,17 +69,17 @@ class ListConfigs extends Base { 'all' ) ->addOption( - 'public', + 'private', null, InputOption::VALUE_NONE, - 'Use this option when you want to exclude sensitive configs like passwords, salts, ...' + 'Use this option when you want to include sensitive configs like passwords, salts, ...' ) ; } protected function execute(InputInterface $input, OutputInterface $output) { $app = $input->getArgument('app'); - $noSensitiveValues = $input->getOption('public'); + $noSensitiveValues = !$input->getOption('private'); if ($noSensitiveValues && !$input->hasParameterOption('--output')) { // If you post this publicly we prefer the json format |