Merged BRANCHES/DEV/V4.0-BUG-FIX to HEAD:

36740: Fix for ALF-14002: "No dashlets listed when customizing Site dashboard for the "Web Site Design Project" sample Share Site "

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@36743 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Steven Glover
2012-05-22 19:52:20 +00:00
parent 5245ec7316
commit 77717de7f3
2 changed files with 67 additions and 1 deletions

View File

@@ -452,7 +452,7 @@ public class HiddenAspect
* aspects if they are present
* @return
*/
public void checkHidden(FileInfoImpl fileInfo, boolean both)
public HiddenFileInfo checkHidden(FileInfoImpl fileInfo, boolean both)
{
NodeRef nodeRef = fileInfo.getNodeRef();
HiddenFileInfo hiddenFileInfo = checkHidden(nodeRef, both);
@@ -460,6 +460,7 @@ public class HiddenAspect
{
fileInfo.setHidden(true);
}
return hiddenFileInfo;
}
/**