Commit c7e93eb5 authored by Julien Muchembled's avatar Julien Muchembled

ProxyField.get_value does not accept REQUEST as a positional parameter

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31091 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent de410db5
......@@ -238,9 +238,10 @@ def generateSubForm(self, value, REQUEST):
'is_right_display': 0,
}
for property in 'title', 'size', 'required', 'editable':
empty_sub_field_property_dict[property] = self.get_value(property, REQUEST)
empty_sub_field_property_dict[property] = self.get_value(property,
REQUEST=REQUEST)
hash_script_id = self.get_value('hash_script_id', REQUEST)
hash_script_id = self.get_value('hash_script_id', REQUEST=REQUEST)
if hash_script_id:
return getattr(self, hash_script_id)(
item_list,
......
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