Commit 882ea1e8 authored by Vincent Pelletier's avatar Vincent Pelletier

ERP5Type.Core.Folder: Fix _recurseCallMethod disabling group_id.

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