mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)
63904: Merged V4.2-BUG-FIX (4.2.2) to HEAD-BUG-FIX (4.3.0.BF) 63830: Merged V4.1-BUG-FIX (4.1.9) to V4.2-BUG-FIX (4.2.2) 63743: Merged V4.1.8 (4.1.8) to V4.1-BUG-FIX (4.1.9) 63678: Merged DEV to PATCHES/V4.1.8 (4.1.8) 63659 : MNT-10836 : Created site isn't present on My Sites dashlet - We should make additional check for site existence while listing user's sites as ACL may still exists while site was removed (in trashcan). git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@64333 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1073,7 +1073,8 @@ public class SiteServiceImpl extends AbstractLifecycleBean implements SiteServic
|
||||
if (siteNames.size() < maxResults)
|
||||
{
|
||||
String siteName = resolveSite(authority);
|
||||
if (siteName == null)
|
||||
// MNT-10836 fix, after MNT-10109 we should also check site existence
|
||||
if (siteName == null || getSite(siteName) == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user