diff options
author | alecpl <alec@alec.pl> | 2010-04-29 17:22:27 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-04-29 17:22:27 +0000 |
commit | 06c116bf757d55d17dd03b60e1260ccdb55b2ee9 (patch) | |
tree | c6a04e5860724ddb0baa2fdf34c22fd6fad49a14 | |
parent | cecf46a41ba2578274665eb64788347c2da570c5 (diff) |
- Fix database constraint violation when opening a message (#1486696)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/include/rcube_imap.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix database constraint violation when opening a message (#1486696) - Add 'loading' message while login is in progress (#1486667) - Fix quota_zero_as_unlimited (#1486662) - Fix folder subscription checking (#1486684) diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index f5b17285e..9db6427b2 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1589,7 +1589,7 @@ class rcube_imap if ($headers->uid && $headers->id) $this->uid_id_map[$mailbox][$headers->uid] = $headers->id; - $this->add_message_cache($mailbox.'.msg', $headers->id, $headers, NULL, true); + $this->add_message_cache($mailbox.'.msg', $headers->id, $headers, NULL); } return $headers; |