mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-02-17 23:43:14 +03:00
Update Server.php
This commit is contained in:
parent
743ceff0de
commit
44a2080f3e
@ -323,15 +323,15 @@ class Server
|
||||
*/
|
||||
public function numMessages($mailbox='')
|
||||
{
|
||||
if ($mailbox===''){
|
||||
return imap_num_msg( $this->getImapStream() );
|
||||
if ($mailbox==='') {
|
||||
return imap_num_msg($this->getImapStream());
|
||||
}
|
||||
if (!$this->hasMailbox($mailbox) && $mailbox !== ''){
|
||||
if (!$this->hasMailbox($mailbox) && $mailbox !== '') {
|
||||
return 0;
|
||||
}
|
||||
$oldMailbox = $this->getMailBox();
|
||||
$this->setMailbox($mailbox);
|
||||
$cnt = imap_num_msg($this->getImapStream());
|
||||
$cnt = $this->numMessages();
|
||||
$this->setMailbox($oldMailbox);
|
||||
return $cnt;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user