diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-28 13:08:48 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-28 13:08:48 +0000 |
| commit | 037136124f099b492a27ce73463f212683de3e49 (patch) | |
| tree | eaaa46faee971e90bf233300e449b2aac92f7a16 | |
| parent | 6a521b70efca09fd6c483b076e653f30bc235beb (diff) | |
- Fixed wrong function call in sync_header_index()
git-svn-id: https://svn.roundcube.net/trunk@3995 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index b7ba9abd4..cca0627ec 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -1349,8 +1349,8 @@ class rcube_imap // fetch complete headers and add to cache if (!empty($for_update)) { - if ($headers = $this->conn->fetchHeader($mailbox, - join(',', $for_update), false, $this->fetch_add_headers)) { + if ($headers = $this->conn->fetchHeaders($mailbox, + join(',', $for_update), false, false, $this->fetch_add_headers)) { foreach ($headers as $header) { $this->add_message_cache($cache_key, $header->id, $header, NULL, in_array($header->uid, (array)$for_remove)); |
