Don’t double-escape the helppopup subject.
authorAnders Kaseorg <andersk@mit.edu>
Mon, 17 May 2010 03:56:26 +0000 (23:56 -0400)
committerAnders Kaseorg <andersk@mit.edu>
Mon, 17 May 2010 03:56:26 +0000 (23:56 -0400)
svn path=/trunk/packages/invirt-web/; revision=3004

code/templates/functions.mako

index c57e904..f5a9166 100644 (file)
@@ -50,5 +50,5 @@ def nl2br(string):
 
 <%def name="helppopup(subj)">
 ## Return HTML code for a (?) link to a specified help topic
 
 <%def name="helppopup(subj)">
 ## Return HTML code for a (?) link to a specified help topic
-<span class="helplink"><a href="help?simple=true;subject=${subj | u}" target="_blank" onclick="return helppopup(${subj | u,jquote})">(?)</a></span>
+<span class="helplink"><a href="help?simple=true;subject=${subj | u}" target="_blank" onclick="return helppopup(${subj | jquote})">(?)</a></span>
 </%def>
 </%def>