diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-02-09 20:41:55 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-02-09 20:41:55 +0100 |
commit | 40d798e668857efbe43ffab18d731a61b7c15b77 (patch) | |
tree | d2561837d87569bbe8a2a575ecdaefe83bca9df5 | |
parent | a39c7591d6b0bfcb323cd14a5c1164576eaf7559 (diff) | |
download | nextcloud-server-40d798e668857efbe43ffab18d731a61b7c15b77.tar.gz nextcloud-server-40d798e668857efbe43ffab18d731a61b7c15b77.zip |
Hide updater.secret from occ output by default
We should not have people post that value to us.
-rw-r--r-- | lib/private/systemconfig.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/systemconfig.php b/lib/private/systemconfig.php index 9f99216fa4e..4fa6e9b93ca 100644 --- a/lib/private/systemconfig.php +++ b/lib/private/systemconfig.php @@ -41,6 +41,7 @@ class SystemConfig { 'mail_smtppassword' => true, 'passwordsalt' => true, 'secret' => true, + 'updater.secret' => true, 'ldap_agent_password' => true, 'objectstore' => ['arguments' => ['password' => true]], ]; |