1
0
mirror of https://github.com/django/django.git synced 2025-10-30 09:06:13 +00:00

Fixed #15683 -- Prevented escaped string to be needlessly marked safe twice in force_escape filter. Thanks tyrion for the initial patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17876 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Claude Paroz
2012-04-07 15:16:11 +00:00
parent 8663bc1103
commit 8dd04fd84b
2 changed files with 5 additions and 3 deletions

View File

@@ -419,7 +419,7 @@ def force_escape(value):
characters (as opposed to "escape", which marks the content for later
possible escaping).
"""
return mark_safe(escape(value))
return escape(value)
@register.filter("linebreaks", is_safe=True, needs_autoescape=True)
@stringfilter