fix: escaper, use h.escape instead of html_escape since it's faster and correct
This commit is contained in:
parent
f6cd5ffe89
commit
53e0af18ff
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ def _hash_key(k):
|
|||
|
||||
def description_escaper(desc):
|
||||
from rhodecode.lib import helpers as h
|
||||
return h.html_escape(desc)
|
||||
return h.escape(desc)
|
||||
|
||||
|
||||
def in_filter_generator(qry, items, limit=500):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue