-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Description
Hi!
I faced with this problem on the Alfresco 4.2f.
TC:
- Set following settings in alfresco-global.properties file:
audit.enabled=true
audit.alfresco-access.enabled=true
audit.tagging.enabled=true
audit.dod5015.enabled=false
audit.alfresco-access.sub-actions.enabled=true
audit.filter.alfresco-access.default.enabled=false - Restart Alfresco to applay this change
- Login as admin user
- Enable audit dashlet
- Create any content
ER: the "CREATE" action and other actions should display in the audit dashlet
AR: the "Data error" occurred
Root cause:
YAHOO.lang.JSON.useNativeParse set to true and Native.parse doesn't correct work with CREATE action JSON representation.
I fixed this by adding:
YAHOO.lang.JSON.useNativeParse = false;
to audit-application.js
But I think this is only WA and needs more effecient solution.
Please, fix this :)