projects
/
invirt/packages/invirt-web.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04fa949
)
Don’t double-escape the helppopup subject.
author
Anders Kaseorg
<andersk@mit.edu>
Mon, 17 May 2010 03:56:26 +0000
(23:56 -0400)
committer
Anders 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
patch
|
blob
|
history
diff --git
a/code/templates/functions.mako
b/code/templates/functions.mako
index
c57e904
..
f5a9166
100644
(file)
--- a/
code/templates/functions.mako
+++ b/
code/templates/functions.mako
@@
-50,5
+50,5
@@
def nl2br(string):
<%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>