Deal with special placeholder subfolders
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 17 Aug 2009 05:07:04 +0000 (23:07 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 17 Aug 2009 05:07:04 +0000 (23:07 -0600)
imp/js/DimpBase.js

index dd771b2..7b8ec75 100644 (file)
@@ -1224,6 +1224,9 @@ var DimpBase = {
 
     getSubFolderId: function(f)
     {
+        if (f.endsWith('_special')) {
+            f = f.slice(0, -8);
+        }
         return 'sub' + f;
     },