diff options
author | alecpl <alec@alec.pl> | 2010-10-29 12:41:11 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-29 12:41:11 +0000 |
commit | 93272ea91b3263acd883cac77986125e9a2ad8c6 (patch) | |
tree | 760662f717e8aaa9ec7b9d6668d9d3ec94f9c9e7 /program/include/rcube_imap.php | |
parent | c309cd8928af861637996f5c5490a2db0dc626dc (diff) |
- Use consistent results from some functions, code cleanup
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index d08554206..028d998c3 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -2474,8 +2474,7 @@ class rcube_imap } // move messages - $move = $this->conn->move($uids, $from_mbox, $to_mbox); - $moved = !($move === false || $move < 0); + $moved = $this->conn->move($uids, $from_mbox, $to_mbox); // send expunge command in order to have the moved message // really deleted from the source mailbox @@ -2536,8 +2535,9 @@ class rcube_imap list($uids, $all_mode) = $this->_parse_uids($uids, $from_mbox); // exit if no message uids are specified - if (empty($uids)) + if (empty($uids)) { return false; + } // make sure mailbox exists if ($to_mbox != 'INBOX' && !$this->mailbox_exists($tbox, true)) { @@ -2548,8 +2548,7 @@ class rcube_imap } // copy messages - $copy = $this->conn->copy($uids, $from_mbox, $to_mbox); - $copied = !($copy === false || $copy < 0); + $copied = $this->conn->copy($uids, $from_mbox, $to_mbox); if ($copied) { $this->_clear_messagecount($to_mbox); @@ -3650,7 +3649,7 @@ class rcube_imap if (!$msg_count) return $cache_count ? -2 : 1; - if ($cache_count==$msg_count) { + if ($cache_count == $msg_count) { if ($this->skip_deleted) { $h_index = $this->conn->fetchHeaderIndex($mailbox, "1:*", 'UID', $this->skip_deleted); |