Commit de410db5 authored by Yoshinori Okuji's avatar Yoshinori Okuji

ZMIField does not accept REQUEST as a positional parameter.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31090 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7917e8a8
......@@ -223,7 +223,7 @@ class ParallelListField(ZMIField):
return result
def generateSubForm(self, value, REQUEST):
item_list = [x for x in self.get_value('items', REQUEST)
item_list = [x for x in self.get_value('items', REQUEST=REQUEST)
if x[0] != '' and x[1]]
value_list = value
......
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