Commit 96a0c6bf authored by Wichert Akkerman's avatar Wichert Akkerman

Fix several template errors in SiteErrorLog (chameleon compatibility)

parent 82713b5e
......@@ -44,6 +44,8 @@ Features Added
Bugs Fixed
++++++++++
- Fix several template errors in SiteErrorLog (chameleon compatibility).
- LP #267820: Fix bad except clause in the ``sequence_sort`` method of
the ``<dtml-in>`` tag.
......
......@@ -85,7 +85,7 @@ No exceptions logged.
>
<span tal:content="entry/type">AttributeError</span>:
<span tal:define="value entry/value"
tal:content="python: len(value) < 70 and value or value[:70] + '...'">
tal:content="python: len(value) &lt; 70 and value or value[:70] + '...'">
Application object has no attribute "zzope"</span>
</a>
</td>
......@@ -93,7 +93,7 @@ No exceptions logged.
tal:attributes="href string:${context/absolute_url}/forgetEntry?id=${entry/id}"
><img title="Forget this entry" src="/misc_/SiteErrorLog/ok.gif" border="0"
tal:attributes="src string:${request/BASEPATH1}/misc_/SiteErrorLog/ok.gif"
></a></td>
/></a></td>
</tr>
</table>
......
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