From 41caad8b48b0b6038294d90e4fdea0ad779fe9ad Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 26 Jun 2009 08:40:58 -0400
Subject: [PATCH] - fix lost argument in iil_C_FetchHeaders call (#1485941)
---
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 8ffcfe0..831dff6 100644
--- a/program/include/rcube_imap.php
+++ b/program/include/rcube_imap.php
@@ -773,7 +773,7 @@
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))
{
--
Gitblit v1.9.1