Commit 295a32ea authored by Vincent Pelletier's avatar Vincent Pelletier

ERP5Type.Core.Folder: Fix _recurseCallMethod disabling group_id.

parent dccc1f22
......@@ -581,7 +581,7 @@ class FolderMixIn(ExtensionClass.Base):
if hook_raised:
raise
reactivate_kw = activate_kw.copy()
reactivate_kw['group_method_id'] = kw['group_id'] = '' # no grouping
reactivate_kw['group_method_id'] = reactivate_kw['group_id'] = '' # no grouping
reactivate_kw['activity'] = 'SQLQueue'
activate(self, **reactivate_kw)._recurseCallMethod(
method_id, method_args, method_kw, restricted=restricted, **kw)
......
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