##// END OF EJS Templates
fixed escaping in tooltip
marcink -
r444:0668919c default
parent child Browse files
Show More
@@ -75,8 +75,8 b' class _ToolTip(object):'
75 @param tooltip_title:
75 @param tooltip_title:
76 """
76 """
77
77
78 return literal(wrap_paragraphs(tooltip_title, trim_at)\
78 return wrap_paragraphs(escape(tooltip_title), trim_at)\
79 .replace('\n', '<br/>'))
79 .replace('\n', '<br/>')
80
80
81 def activate(self):
81 def activate(self):
82 """
82 """
General Comments 0
You need to be logged in to leave comments. Login now