From: Michael M Slusarz Date: Thu, 24 Dec 2009 06:23:53 +0000 (-0700) Subject: Fix deleting messages in search mailboxes. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e7c8285d40afd0a2dc48a57a6decd74af32db6af;p=horde.git Fix deleting messages in search mailboxes. --- diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index 11c9194d7..3e659f4dc 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -2212,7 +2212,7 @@ var DimpBase = { if (vs.getBuffer().getMetaData('search')) { $H(r.uids).each(function(pair) { pair.value.each(function(v) { - uids.push(v + pair.key); + uids.push(v + DIMP.conf.IDX_SEP + pair.key); }); }); diff --git a/imp/templates/javascript_defs_dimp.php b/imp/templates/javascript_defs_dimp.php index ae1e5de85..89000a2dd 100644 --- a/imp/templates/javascript_defs_dimp.php +++ b/imp/templates/javascript_defs_dimp.php @@ -52,6 +52,7 @@ $code['conf'] = array_filter(array( 'URI_SEARCH' => (string) Horde::applicationUrl('search.php'), 'URI_VIEW' => (string) Horde::applicationUrl('view.php'), + 'IDX_SEP' => IMP::IDX_SEP, 'SESSION_ID' => defined('SID') ? SID : '', // Other variables