mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 23:08:08 +08:00
Resolve #382
This commit is contained in:
parent
6fe8ce7ec4
commit
e5f1c41df0
1 changed files with 3 additions and 2 deletions
|
@ -219,14 +219,15 @@ class ImapClient extends \MailSo\Net\NetClient
|
|||
}
|
||||
else
|
||||
{
|
||||
$sPassword = $this->EscapeString(\utf8_decode($sPassword));
|
||||
if ($this->oLogger)
|
||||
{
|
||||
$this->oLogger->AddSecret($this->EscapeString($sPassword));
|
||||
$this->oLogger->AddSecret($sPassword);
|
||||
}
|
||||
$oResponse = $this->SendRequestGetResponse('LOGIN',
|
||||
array(
|
||||
$this->EscapeString($sLogin),
|
||||
$this->EscapeString($sPassword)
|
||||
$sPassword
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue