summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-06-26 12:40:58 +0000
committeralecpl <alec@alec.pl>2009-06-26 12:40:58 +0000
commit41caad8b48b0b6038294d90e4fdea0ad779fe9ad (patch)
tree800ccd00cea8e3275a12f062b47561823d8c5651
parentc8a1e6eb63bb629118b861d2646736fb9f49f710 (diff)
- fix lost argument in iil_C_FetchHeaders call (#1485941)
-rw-r--r--program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php
index 8ffcfe0cb..831dff6da 100644
--- a/program/include/rcube_imap.php
+++ b/program/include/rcube_imap.php
@@ -773,7 +773,7 @@ class rcube_imap
function _fetch_headers($mailbox, $msgs, &$a_msg_headers, $cache_key)
{
// fetch reqested headers from server
- $a_header_index = iil_C_FetchHeaders($this->conn, $mailbox, $msgs, false, $this->fetch_add_headers);
+ $a_header_index = iil_C_FetchHeaders($this->conn, $mailbox, $msgs, false, false, $this->fetch_add_headers);
if (!empty($a_header_index))
{