ALF-11664 Moderated sites should use site.public.group (from SysAdminParams) for setting the group with general access, as Public sites already do, rather than hard coding the EVERYONE group

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32242 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-11-23 15:42:19 +00:00
parent b6ea53cd82
commit 91d0fc28ba
2 changed files with 28 additions and 16 deletions

View File

@@ -244,4 +244,10 @@ public class SiteInfoImpl implements SiteInfo
{
return this.shortName.hashCode();
}
public String toString()
{
return visibility.name() + " Site " + shortName + " (" + title + ")" +
" @ " + nodeRef.toString();
}
}