Merged from DEV/V3.3-DOCLIB-PORTLET to HEAD

22600: DocLib Portlet: New "Site constrained" portlet added where site is configured via portlet preferences. Removed CMIS portlet.

Also added workflow and task pages to documentlibrary family

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22601 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mike Hatfield
2010-09-16 16:54:31 +00:00
parent 1a2778b6c1
commit 9565f9ea31

View File

@@ -122,7 +122,8 @@ public class SiteInfoImpl implements SiteInfo
*/
public String getTitle()
{
return title;
// title can be used for sorting, so ensure it's not null
return (title != null ? title : "");
}
/**