From: Michael M Slusarz Date: Mon, 17 Aug 2009 05:07:04 +0000 (-0600) Subject: Deal with special placeholder subfolders X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f926551109369511e81106a7fdcb122cbc777fb0;p=horde.git Deal with special placeholder subfolders --- diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index dd771b273..7b8ec758f 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -1224,6 +1224,9 @@ var DimpBase = { getSubFolderId: function(f) { + if (f.endsWith('_special')) { + f = f.slice(0, -8); + } return 'sub' + f; },