Revert default password setting & using "HiddenString" even for empty strings

This commit is contained in:
Philipp Holzer 2019-07-09 22:38:54 +02:00
parent ab7c6499ff
commit e1d135238a
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
3 changed files with 5 additions and 3 deletions

View file

@ -95,7 +95,7 @@ class ConfigCache implements IConfigCache, IPConfigCache
if ($this->hidePasswordOutput &&
$key == 'password' &&
!empty($value) && is_string($value)) {
is_string($value)) {
$this->config[$cat][$key] = new HiddenString((string) $value);
} else {
$this->config[$cat][$key] = $value;