Mercurial > p > roundup > code
changeset 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 | b778e1768a05 |
| children | 8a2a8c9eba2e |
| files | roundup/cgi/templating.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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)
