Changeset 4194 in subversion


Ignore:
Timestamp:
Nov 8, 2010 7:55:48 AM (3 years ago)
Author:
alec
Message:
  • Fix operations on messages in unsubscribed folders (#1487107)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r4190 r4194  
    6565- Improve responsiveness of messages displaying (#1486986) 
    6666- Add option for minimum length of autocomplete's string (#1486428) 
     67- Fix operations on messages in unsubscribed folder (#1487107) 
    6768 
    6869RELEASE 0.4.2 
  • trunk/roundcubemail/program/include/rcube_imap.php

    r4186 r4194  
    24632463 
    24642464        // make sure mailbox exists 
    2465         if ($this->mailbox_exists($mbox_name, true)) { 
     2465        if ($this->mailbox_exists($mbox_name)) { 
    24662466            if ($is_file) 
    24672467                $saved = $this->conn->appendFromFile($mailbox, $message, $headers); 
     
    25012501 
    25022502        // make sure mailbox exists 
    2503         if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox, true)) { 
     2503        if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox)) { 
    25042504            if (in_array($tbox, $this->default_folders)) 
    25052505                $this->create_mailbox($tbox, true); 
     
    25822582 
    25832583        // make sure mailbox exists 
    2584         if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox, true)) { 
     2584        if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox)) { 
    25852585            if (in_array($tbox, $this->default_folders)) 
    25862586                $this->create_mailbox($tbox, true); 
Note: See TracChangeset for help on using the changeset viewer.