diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-06-26 12:40:58 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-06-26 12:40:58 +0000 |
| commit | b075b7a0ac50d8d7ef58f7b65ecf6644891c7093 (patch) | |
| tree | b9957e71267f195084961195e44120fe8e21e768 /roundcubemail/program | |
| parent | ae489b8a9c0b71ff86df3e6eaf56c4715b241771 (diff) | |
- fix lost argument in iil_C_FetchHeaders call (#1485941)
git-svn-id: https://svn.roundcube.net/trunk@2680 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index 8ffcfe0cb..831dff6da 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/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)) { |
