Commit 2c645b34 authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Cédric Le Ninivin

ERP5Type.Core.Folder: Fix _recurseCallMethod disabling group_id.

parent aea28645
......@@ -527,7 +527,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