Small change to unescape function in template_helpers (move replace('&', '&') at the end).
--- a/app/soc/views/helpers/template_helpers.py Sun Sep 21 08:56:52 2008 +0000
+++ b/app/soc/views/helpers/template_helpers.py Sun Sep 21 08:59:11 2008 +0000
@@ -64,8 +64,8 @@
if not isinstance(html, basestring):
html = str(html)
- html.replace('&', '&').replace('<', '<')
- html.replace('>', '>').replace('"', '"').replace(''',"'")
+ html.replace(''',"'").replace('<', '<')
+ html.replace('>', '>').replace('"', '"').replace('&', '&')
return html