mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Correction to HibernateNodeDaoServiceImpl. Do not store content data for properties of type ANY in the content data table. Fixes license persistence in the enterprise edition.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14887 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -4321,7 +4321,7 @@ public class HibernateNodeDaoServiceImpl extends HibernateDaoSupport implements
|
|||||||
" Value: " + value);
|
" Value: " + value);
|
||||||
}
|
}
|
||||||
// Handle ContentData
|
// Handle ContentData
|
||||||
if (value instanceof ContentData)
|
if (value instanceof ContentData && propertyTypeQName.equals(DataTypeDefinition.CONTENT))
|
||||||
{
|
{
|
||||||
// Needs converting to an ID
|
// Needs converting to an ID
|
||||||
ContentData contentData = (ContentData) value;
|
ContentData contentData = (ContentData) value;
|
||||||
|
Reference in New Issue
Block a user