Commit 99022708 authored by Lucas Carvalho's avatar Lucas Carvalho

2011-04-08 lucas

*  Fixed expression once the last step of configuration there is no form object.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45301 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 03671cd7
......@@ -92,7 +92,7 @@ IDEAS:\n
<body>\n
<form id="main_form"\n
tal:attributes="enctype form/Form_getEnctype | enctype | nothing;\n
action python: (form.action == \'login\' and \'Base_callDialogMethod\') or url;\n
action python: form is not None and (form.action == \'login\' and \'Base_callDialogMethod\') or url;\n
method python:str(path(\'form/method | string:post\')).lower()">\n
<fieldset id="hidden_fieldset">\n
<!-- Hidden button as explained in http://ppewww.ph.gla.ac.uk/~flavell/www/formquestion.html -->\n
......
2011-04-08 lucas
* Fixed expression once the last step of configuration there is no form object.
2011-04-08 lucas
* The field your_business_configuration has been renamed to fix a bug when the key was invalid, the list of business configuration wasn't being rendered.
......
516
\ No newline at end of file
517
\ 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