[editcontroller] fix bad method name: s/process_form_data/process_form_value
NOTE: this still doesn't work, relations are not processed properly
--- a/web/views/editcontroller.py Thu Sep 24 20:25:49 2009 +0200
+++ b/web/views/editcontroller.py Thu Sep 24 20:28:25 2009 +0200
@@ -205,7 +205,7 @@
"""handle edition for the (rschema, x) relation of the given entity
"""
values = set()
- for eid in field.process_form_data(form):
+ for eid in field.process_form_value(form):
if not eid: # AutoCompletionWidget
continue
typed_eid = self._get_eid(eid)