projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a5f85a
)
Deal with special placeholder subfolders
author
Michael M Slusarz
<slusarz@curecanti.org>
Mon, 17 Aug 2009 05:07:04 +0000
(23:07 -0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Mon, 17 Aug 2009 05:07:04 +0000
(23:07 -0600)
imp/js/DimpBase.js
patch
|
blob
|
history
diff --git
a/imp/js/DimpBase.js
b/imp/js/DimpBase.js
index
dd771b2
..
7b8ec75
100644
(file)
--- 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;
},