Commit 6727f384 authored by Romain Courteaud's avatar Romain Courteaud

Correct typing error: indlude_if_child to include_if_child.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2462 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0720d767
......@@ -518,7 +518,7 @@ class BaseCategory(Category):
value_list = []
if recursive:
for c in self.objectValues(self.allowed_types):
value_list.extend(c.getCategoryChildValueList(recursive = 1,indlude_if_child=include_if_child))
value_list.extend(c.getCategoryChildValueList(recursive = 1,include_if_child=include_if_child))
else:
for c in self.objectValues(self.allowed_types):
if include_if_child:
......
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