diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-08 12:55:48 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-08 12:55:48 +0000 |
| commit | 39165e2fb0caef9d8efe298d35d4fea43415fee2 (patch) | |
| tree | cf79ea2935fac2b33d9be70865fe2389d74b0a0e /roundcubemail/program/include/rcube_imap.php | |
| parent | 80e91a208d031c0f30c5ac62f2293742cbd77b58 (diff) | |
- Fix operations on messages in unsubscribed folders (#1487107)
git-svn-id: https://svn.roundcube.net/trunk@4194 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_imap.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index aa6521af8..acf0aa0e0 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -2462,7 +2462,7 @@ class rcube_imap $mailbox = $this->mod_mailbox($mbox_name); // make sure mailbox exists - if ($this->mailbox_exists($mbox_name, true)) { + if ($this->mailbox_exists($mbox_name)) { if ($is_file) $saved = $this->conn->appendFromFile($mailbox, $message, $headers); else @@ -2500,7 +2500,7 @@ class rcube_imap return false; // make sure mailbox exists - if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox, true)) { + if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox)) { if (in_array($tbox, $this->default_folders)) $this->create_mailbox($tbox, true); else @@ -2581,7 +2581,7 @@ class rcube_imap } // make sure mailbox exists - if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox, true)) { + if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox)) { if (in_array($tbox, $this->default_folders)) $this->create_mailbox($tbox, true); else |
