Commit 854dcd9a authored by Jérome Perrin's avatar Jérome Perrin

Support for alternate_name was missing.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@20799 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent cc9d1ae0
......@@ -212,7 +212,7 @@ def parseField(f):\n
Parse given form field, to put them in\n
kw or in encapsulated_editor_list\n
"""\n
k = f.id\n
k = f.get_value(\'alternate_name\') or f.id\n
v = getattr(request, k, MARKER)\n
if hasattr(v, \'edit\'):\n
# This is an encapsulated editor\n
......
818
\ No newline at end of file
816
\ No newline at end of file
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