Merge branch 'ent-7910-pandora-db-con-db-encriptada' into 'develop'

Fix issue with encrypted password

Closes pandora_enterprise#7910

See merge request artica/pandorafms!4433
This commit is contained in:
Daniel Rodriguez 2021-10-06 12:42:12 +00:00
commit 3f86528c80
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ final class DBMaintainer
public function __construct(array $params)
{
$this->user = $params['user'];
$this->pass = $params['pass'];
$this->pass = io_output_password($params['pass']);
$this->host = $params['host'];
$this->port = $params['port'];
$this->name = $params['name'];