diff options
author | alecpl <alec@alec.pl> | 2008-05-02 08:51:15 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-05-02 08:51:15 +0000 |
commit | c5cc386da4d2a8a3fb11254127fb36c11bdc326a (patch) | |
tree | 1d97bc9c9a63e82d6bf716a8f5541eaf54dbf4b2 | |
parent | d1403fd7268ccf96ab6e7d04506ea1b1802c7eb2 (diff) |
- fixed searching broken in r1341
-rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 4ac033a08..a01687de5 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -669,7 +669,7 @@ class rcube_imap // fetch reuested headers from server $a_msg_headers = array(); - $this->_fetch_headers($mailbox, join(',', $msgs), $a_msg_headers, NULL); + $this->_fetch_headers($mailbox, $msgs, $a_msg_headers, NULL); // return empty array if no messages found if (!is_array($a_msg_headers) || empty($a_msg_headers)) |