Changeset - 0668919c307c
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-09-02 20:07:05
marcin@python-works.com
fixed escaping in tooltip
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
pylons_app/lib/helpers.py
Show inline comments
 
@@ -75,8 +75,8 @@ class _ToolTip(object):
 
        @param tooltip_title:
 
        """
 
        
 
        return literal(wrap_paragraphs(tooltip_title, trim_at)\
 
                       .replace('\n', '<br/>')) 
 
        return wrap_paragraphs(escape(tooltip_title), trim_at)\
 
                       .replace('\n', '<br/>')
 
    
 
    def activate(self):
 
        """
0 comments (0 inline, 0 general)