mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 10:09:20 +03:00
Small fixes
This commit is contained in:
parent
7d7c05737f
commit
d1a7dd9491
5 changed files with 33 additions and 33 deletions
|
|
@ -39,7 +39,7 @@ class ResponseException extends \MailSo\Imap\Exceptions\Exception
|
|||
}
|
||||
|
||||
/**
|
||||
* @return \MailSo\Imap\Response | null
|
||||
* @return \MailSo\Imap\Response|null
|
||||
*/
|
||||
public function GetLastResponse()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ class FetchResponse
|
|||
{
|
||||
$mReturn = $this->oImapResponse->ResponseList[1];
|
||||
}
|
||||
else
|
||||
else if (isset($this->oImapResponse->ResponseList[3]) && \is_array($this->oImapResponse->ResponseList[3]))
|
||||
{
|
||||
foreach ($this->oImapResponse->ResponseList[3] as $mItem)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -589,7 +589,7 @@ class ImapClient extends \MailSo\Net\NetClient
|
|||
'STATUS' === $oImapResponse->StatusOrIndex &&
|
||||
isset($oImapResponse->ResponseList[2]) &&
|
||||
isset($oImapResponse->ResponseList[3]) &&
|
||||
is_array($oImapResponse->ResponseList[3]))
|
||||
\is_array($oImapResponse->ResponseList[3]))
|
||||
{
|
||||
$sFolderNameRaw = $oImapResponse->ResponseList[2];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue