Skip to content

Commit 153a34c

Browse files
author
Johannes Gijsbers
committed
Replace '&' with '&' in the URLs generated by classhelp(), to validate.
1 parent c822089 commit 153a34c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/cgi/templating.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,9 @@ def classhelp(self, properties=None, label='(list)', width='500',
467467
properties.sort()
468468
properties = ','.join(properties)
469469
if property:
470-
property = '&property=%s'%property
470+
property = '&property=%s'%property
471471
return '<a class="classhelp" href="javascript:help_window(\'%s?'\
472-
':startwith=0&:template=help&properties=%s%s\', \'%s\', \
472+
':startwith=0&amp;:template=help&amp;properties=%s%s\', \'%s\', \
473473
\'%s\')">%s</a>'%(self.classname, properties, property, width,
474474
height, label)
475475

0 commit comments

Comments
 (0)