diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-08 11:32:51 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-08 11:32:51 +0200 |
commit | 1d1fdcbf8cd7cce93454eb0b64eaf76975ebdd17 (patch) | |
tree | b17bd2d36091465655aea476515f6f12eaf172d5 /program/lib | |
parent | 188304872066eef4b20c305f9cd6ea939dd419e0 (diff) |
Fix splitting message identifiers into UID and folder values
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_imap.php | 4 | ||||
-rw-r--r-- | program/lib/Roundcube/rcube_message.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php index 41430db01..23cacd4d2 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -1709,7 +1709,7 @@ class rcube_imap extends rcube_storage // decode combined UID-folder identifier if (preg_match('/^\d+-[^,]+$/', $uid)) { - list($uid, $folder) = explode('-', $uid); + list($uid, $folder) = explode('-', $uid, 2); } // get cached headers @@ -1745,7 +1745,7 @@ class rcube_imap extends rcube_storage // decode combined UID-folder identifier if (preg_match('/^\d+-[^,]+$/', $uid)) { - list($uid, $folder) = explode('-', $uid); + list($uid, $folder) = explode('-', $uid, 2); } // Check internal cache diff --git a/program/lib/Roundcube/rcube_message.php b/program/lib/Roundcube/rcube_message.php index ad94005ac..edfd339d8 100644 --- a/program/lib/Roundcube/rcube_message.php +++ b/program/lib/Roundcube/rcube_message.php @@ -76,7 +76,7 @@ class rcube_message { // decode combined UID-folder identifier if (preg_match('/^\d+-[^,]+$/', $uid)) { - list($uid, $folder) = explode('-', $uid); + list($uid, $folder) = explode('-', $uid, 2); } $this->uid = $uid; |