diff options
| author | alecpl <alec@alec.pl> | 2010-11-08 12:55:48 +0000 | 
|---|---|---|
| committer | alecpl <alec@alec.pl> | 2010-11-08 12:55:48 +0000 | 
| commit | 3bb9b5212bc9f486ee4d3d8d2d07593cffeb11ae (patch) | |
| tree | 3626c31bf821aa203709201f89c42eb682207880 | |
| parent | 7fcb56b5b62877f074a8f6760f69a11f9ff40566 (diff) | |
- Fix operations on messages in unsubscribed folders (#1487107)
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | program/include/rcube_imap.php | 6 | 
2 files changed, 4 insertions, 3 deletions
| @@ -64,6 +64,7 @@ CHANGELOG Roundcube Webmail  - Add 'loading' message on message move/copy/delete/mark actions  - Improve responsiveness of messages displaying (#1486986)  - Add option for minimum length of autocomplete's string (#1486428) +- Fix operations on messages in unsubscribed folder (#1487107)  RELEASE 0.4.2  ------------- diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index aa6521af8..acf0aa0e0 100644 --- a/program/include/rcube_imap.php +++ b/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 | 
