mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2 to HEAD
16700: Fix for ETHREEOH-2509 - Leaving a private site breaks All Sites search for any term found in documents user created in that site. 16703: Fix for ETHREEOH-2775 - "Show all" fails for user if permissions of folder that item was deleted from are changed to exclude them. 16705: Fixes to Site Links dashlet component. 16707: Fixed ETHREEOH-619 "User who is already a member of the site (or invite is pending) can be added to the invite list" git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16899 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -383,7 +383,6 @@ public class AVMBrowseBean implements IContextListener
|
||||
linkValidationService = (LinkValidationService)FacesContextUtils.getRequiredWebApplicationContext(
|
||||
FacesContext.getCurrentInstance()).getBean("LinkValidationService");
|
||||
}
|
||||
|
||||
return this.linkValidationService;
|
||||
}
|
||||
|
||||
@@ -400,15 +399,14 @@ public class AVMBrowseBean implements IContextListener
|
||||
*/
|
||||
public SearchService getSearchService()
|
||||
{
|
||||
//check for null for cluster environment
|
||||
if(searchService == null)
|
||||
//check for null for cluster environment
|
||||
if (searchService == null)
|
||||
{
|
||||
searchService = Repository.getServiceRegistry(FacesContext.getCurrentInstance()).getSearchService();
|
||||
}
|
||||
return searchService;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param permissionService The PermissionService to set.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user