From 1d1fdcbf8cd7cce93454eb0b64eaf76975ebdd17 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Tue, 8 Apr 2014 11:32:51 +0200 Subject: Fix splitting message identifiers into UID and folder values --- program/lib/Roundcube/rcube_imap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program/lib/Roundcube/rcube_imap.php') 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 -- cgit v1.2.3