Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 3663:8d5c34204a86
dumb bug in cgi templating utils [SF#1490176]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 11 Aug 2006 01:03:50 +0000 |
| parents | 12633662ff63 |
| children | 119397fdbdfd |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Fri Aug 11 01:02:27 2006 +0000 +++ b/roundup/cgi/templating.py Fri Aug 11 01:03:50 2006 +0000 @@ -2511,7 +2511,7 @@ def html_quote(self, html): '''HTML-quote the supplied text.''' - return cgi.escape(url) + return cgi.escape(html) def __getattr__(self, name): '''Try the tracker's templating_utils.'''
