summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-28 13:30:41 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-28 13:30:41 +0000
commit2814773cc83c46ff523fc19390539827d7c07652 (patch)
tree5c7e7a0abbc9e2d94924ef0ac2384847ae3ec64f /roundcubemail/program
parent037136124f099b492a27ce73463f212683de3e49 (diff)
- Fix wrong parameter count in fetchHeader() call
git-svn-id: https://svn.roundcube.net/trunk@3996 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index cca0627ec..c32d6824f 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/program/include/rcube_imap.php
@@ -3193,7 +3193,7 @@ class rcube_imap
// featch headers if unserialize failed
if (empty($this->cache[$cache_key][$uid]))
$this->cache[$cache_key][$uid] = $this->conn->fetchHeader(
- preg_replace('/.msg$/', '', $key), $uid, true, $this->fetch_add_headers);
+ preg_replace('/.msg$/', '', $key), $uid, true, false, $this->fetch_add_headers);
}
}