mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Fix so that subtypes of cm:folder can be seen in doclibrary tree
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14270 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -22,7 +22,7 @@ function getTreenode(siteId, path)
|
||||
// Look for folders in the parentNode
|
||||
for each(item in parsedArgs.parentNode.children)
|
||||
{
|
||||
if (item.type == "{http://www.alfresco.org/model/content/1.0}folder")
|
||||
if (item.isSubType("cm:folder"))
|
||||
{
|
||||
items.push(item);
|
||||
}
|
||||
|
Reference in New Issue
Block a user