Commit 14dee0ca authored by Jérome Perrin's avatar Jérome Perrin

Bug fix for installation of Actions. It failed when 'condition' was not empty.

thanks to Relja Stanisavljevic for the patch


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3621 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ef47fba3
......@@ -615,7 +615,7 @@ class ActionTemplateItem(BaseTemplateItem):
id = action.id
, name = action.title
, action = action.action.text
, condition = action.condition
, condition = action.getCondition()
, permission = action.permissions
, category = action.category
, visible = action.visible
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment