mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 09:04:26 +02:00
Bugfixing empty password setting
This commit is contained in:
parent
357d9b5108
commit
4666b18e5b
2 changed files with 18 additions and 1 deletions
|
@ -94,7 +94,8 @@ class ConfigCache implements IConfigCache, IPConfigCache
|
|||
}
|
||||
|
||||
if ($this->hidePasswordOutput &&
|
||||
$key == 'password') {
|
||||
$key == 'password' &&
|
||||
!empty($value)) {
|
||||
$this->config[$cat][$key] = new HiddenString($value);
|
||||
} else {
|
||||
$this->config[$cat][$key] = $value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue