summaryrefslogtreecommitdiff
path: root/program/steps/mail/func.inc
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-04-08 11:32:51 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-04-08 11:32:51 +0200
commit1d1fdcbf8cd7cce93454eb0b64eaf76975ebdd17 (patch)
treeb17bd2d36091465655aea476515f6f12eaf172d5 /program/steps/mail/func.inc
parent188304872066eef4b20c305f9cd6ea939dd419e0 (diff)
Fix splitting message identifiers into UID and folder values
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r--program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 58f529f94..a541fca96 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -70,7 +70,7 @@ if (!empty($_REQUEST['_search']) && isset($_SESSION['search'])
// remove mbox part from _uid
if (($_uid = get_input_value('_uid', RCUBE_INPUT_GPC)) && preg_match('/^\d+-[^,]+$/', $_uid)) {
- list($_uid, $mbox) = explode('-', $_uid);
+ list($_uid, $mbox) = explode('-', $_uid, 2);
if (isset($_GET['_uid'])) $_GET['_uid'] = $_uid;
if (isset($_POST['_uid'])) $_POST['_uid'] = $_uid;
$_REQUEST['_uid'] = $_uid;