mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
. Merge horrors fixed
. Code compile issue fixed git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4669 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -77,7 +77,7 @@ public abstract class BasePathResultsMap extends BaseTemplateMap
|
||||
if (nodes.size() != 0)
|
||||
{
|
||||
result = new ArrayList<TemplateNode>(1);
|
||||
result.add(new TemplateNode(nodes.get(0), this.services));
|
||||
result.add(new TemplateNode(nodes.get(0), this.services, this.parent.getImageResolver()));
|
||||
}
|
||||
}
|
||||
// or all the results
|
||||
@@ -86,7 +86,7 @@ public abstract class BasePathResultsMap extends BaseTemplateMap
|
||||
result = new ArrayList<TemplateNode>(nodes.size());
|
||||
for (NodeRef ref : nodes)
|
||||
{
|
||||
result.add(new TemplateNode(ref, this.services));
|
||||
result.add(new TemplateNode(ref, this.services, this.parent.getImageResolver()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user