From: jlgijsbers Date: Mon, 20 Oct 2003 20:31:40 +0000 (+0000) Subject: Replace '&' with '&' in the URLs generated by classhelp(), to validate. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a726f0c712da165a3ef4ae5d10677eaaf42b3e10;p=roundup.git Replace '&' with '&' in the URLs generated by classhelp(), to validate. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1923 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/cgi/templating.py b/roundup/cgi/templating.py index ef6fb41..9e0f2d2 100644 --- a/roundup/cgi/templating.py +++ b/roundup/cgi/templating.py @@ -467,9 +467,9 @@ class HTMLClass(HTMLPermissions): properties.sort() properties = ','.join(properties) if property: - property = '&property=%s'%property + property = '&property=%s'%property return '%s'%(self.classname, properties, property, width, height, label)