diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-03-10 12:09:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 12:09:23 +0100 |
commit | e49842cc29e96084c347a1baa99bed639eaa9fff (patch) | |
tree | 9ca6b539c897562fc7692cc64f709be80dab6a8f | |
parent | 5237046b81ea7116a45d6d49644bcfc277eb0fcc (diff) | |
parent | 7c3a0ca0af3d8b87ff9cd0510c4a3de7ced841d9 (diff) | |
download | nextcloud-server-e49842cc29e96084c347a1baa99bed639eaa9fff.tar.gz nextcloud-server-e49842cc29e96084c347a1baa99bed639eaa9fff.zip |
Merge pull request #31331 from nextcloud/backport/31328/stable23
[stable23] Mark split database configs as sensitive
-rw-r--r-- | lib/private/SystemConfig.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index 187779c25c9..0bc6154fbc4 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -43,6 +43,10 @@ class SystemConfig { 'dbhost' => true, 'dbpassword' => true, 'dbuser' => true, + 'activity_dbname' => true, + 'activity_dbhost' => true, + 'activity_dbpassword' => true, + 'activity_dbuser' => true, 'mail_from_address' => true, 'mail_domain' => true, 'mail_smtphost' => true, |