Commit 51f75086 authored by Ivan Tyagov's avatar Ivan Tyagov

Using special ';' in expressions has differences between Zope 2.8 & 2.12 (i.e....

Using special ';' in expressions has differences between Zope 2.8 & 2.12 (i.e. escapes for 2.8 doesn't work properly for 2.12).

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@43872 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7d544ec6
......@@ -106,7 +106,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
<div tal:omit-tag=""\n
tal:define="struct python:field.render(value,request)">\n
<div tal:omit-tag=""\n
tal:define="struct python:struct.replace(\'&nbsp;\',\'\');\n
tal:define="struct python:struct.replace(\'&nbsp\'+chr(59),\'\');\n
struct_input_div python:struct.split(\'<input\');\n
struct_input_len python:len(struct_input_div);\n
struct_input_range python:range(struct_input_len);\n
......
754
\ No newline at end of file
755
\ 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