##// END OF EJS Templates
fix: escaper, use h.escape instead of html_escape since it's faster and correct
super-admin -
r5465:0684a98a default
parent child Browse files
Show More
@@ -130,7 +130,7 b' def _hash_key(k):'
130 130
131 131 def description_escaper(desc):
132 132 from rhodecode.lib import helpers as h
133 return h.html_escape(desc)
133 return h.escape(desc)
134 134
135 135
136 136 def in_filter_generator(qry, items, limit=500):
General Comments 0
You need to be logged in to leave comments. Login now