Fixed #5973 -- Fixed inadvertent allow_tags=True auto-escaping problem.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-11-20 01:37:01 +00:00
parent 6522e0697a
commit b1d40295bc
1 changed files with 2 additions and 0 deletions

View File

@ -148,6 +148,8 @@ def items_for_result(cl, result):
# function has an "allow_tags" attribute set to True.
if not allow_tags:
result_repr = escape(result_repr)
else:
result_repr = mark_safe(result_repr)
else:
field_val = getattr(result, f.attname)