mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix to unreported issue where the Share People Finder would sometimes appear to return no results from a valid search
- due to a problem with the Enter key handler - would sometimes "disappear" People search REST API now allows search for all people again with empty filter arg Removal of unused fields in People Finder results Removal of 'title' field from People REST API results JSON template - never applied to cm:person! git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13753 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -279,7 +279,7 @@ public final class People extends BaseScopableProcessorExtension
|
|||||||
{
|
{
|
||||||
Object[] people = null;
|
Object[] people = null;
|
||||||
|
|
||||||
if (filter == null)
|
if (filter == null || filter.length() == 0)
|
||||||
{
|
{
|
||||||
people = personService.getAllPeople().toArray();
|
people = personService.getAllPeople().toArray();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user