Skip to content

Commit

Permalink
Fixed #2148 -- Now escaping ForeignKey fields correctly in Django adm…
Browse files Browse the repository at this point in the history
…in change-list pages. Thanks, rushman@mail.ru

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 13, 2006
1 parent efcb591 commit 93974e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/templatetags/admin_list.py
Expand Up @@ -131,7 +131,7 @@ def items_for_result(cl, result):


if isinstance(f.rel, models.ManyToOneRel): if isinstance(f.rel, models.ManyToOneRel):
if field_val is not None: if field_val is not None:
result_repr = getattr(result, f.name) result_repr = escape(getattr(result, f.name))
else: else:
result_repr = EMPTY_CHANGELIST_VALUE result_repr = EMPTY_CHANGELIST_VALUE
# Dates and times are special: They're formatted in a certain way. # Dates and times are special: They're formatted in a certain way.
Expand Down

0 comments on commit 93974e0

Please sign in to comment.