Skip to content

Commit eed8035

Browse files
author
Richard Jones
committed
dumb bug in cgi templating utils [SF#1490176]
1 parent 1650863 commit eed8035

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Fixed:
2525
- fix timelog example in customisation doc to mention permissions
2626
- nicer listing of Superseder links (sf non-patch 1497767)
2727
- include roundup-server.ini.example (sf bug 1493859)
28+
- dumb bug in cgi templating utils (sf bug 1490176)
2829

2930

3031
2006-04-27 1.1.2

roundup/cgi/templating.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2511,7 +2511,7 @@ def url_quote(self, url):
25112511

25122512
def html_quote(self, html):
25132513
'''HTML-quote the supplied text.'''
2514-
return cgi.escape(url)
2514+
return cgi.escape(html)
25152515

25162516
def __getattr__(self, name):
25172517
'''Try the tracker's templating_utils.'''

0 commit comments

Comments
 (0)