mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
First part of fix for ALF-2718: DOD5015 module breaks CMIS Atom DiscoveryService webscripts
- unlimited result sets with no security enforcement were not sized correctly git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20122 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -553,7 +553,7 @@ public class ACLEntryAfterInvocationProvider implements AfterInvocationProvider,
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < maxSize.intValue(); i++)
|
||||
for (int i = 0; i < returnedObject.length(); i++)
|
||||
{
|
||||
filteringResultSet.setIncluded(i, true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user