Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 1853:389c4d44c73c
Replace '&' with '&' in the URLs generated by classhelp(), to validate.
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Mon, 20 Oct 2003 20:31:40 +0000 |
| parents | 24819ee5dfbc |
| children | dc6f2155e5b4 |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Mon Oct 20 20:09:15 2003 +0000 +++ b/roundup/cgi/templating.py Mon Oct 20 20:31:40 2003 +0000 @@ -467,9 +467,9 @@ properties.sort() properties = ','.join(properties) if property: - property = '&property=%s'%property + property = '&property=%s'%property return '<a class="classhelp" href="javascript:help_window(\'%s?'\ - ':startwith=0&:template=help&properties=%s%s\', \'%s\', \ + ':startwith=0&:template=help&properties=%s%s\', \'%s\', \ \'%s\')">%s</a>'%(self.classname, properties, property, width, height, label)
