Commit 1786171b authored by Jérome Perrin's avatar Jérome Perrin

if the value is None, don't output "None" in the html


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25818 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9371bd04
...@@ -91,6 +91,8 @@ class EditorWidget(Widget.TextAreaWidget): ...@@ -91,6 +91,8 @@ class EditorWidget(Widget.TextAreaWidget):
""" """
Render form in view only mode. Render form in view only mode.
""" """
if value is None:
value = ''
return value return value
EditorWidgetInstance = EditorWidget() EditorWidgetInstance = EditorWidget()
......
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