From 31e9b26d45f3cf262914a2c1f34fdb78c8161a81 Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Sat, 1 Dec 2007 16:39:28 +0000 Subject: [PATCH] newforms-admin: Fixed #6078. Blank spaces in the chnage list are now marked safe. Thanks toke and Karen Tracy. git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6784 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/templatetags/admin_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/admin/templatetags/admin_list.py b/django/contrib/admin/templatetags/admin_list.py index 2737a27972..2db43270d9 100644 --- a/django/contrib/admin/templatetags/admin_list.py +++ b/django/contrib/admin/templatetags/admin_list.py @@ -185,7 +185,7 @@ def items_for_result(cl, result): else: result_repr = escape(field_val) if force_unicode(result_repr) == '': - result_repr = ' ' + result_repr = mark_safe(' ') # If list_display_links not defined, add the link tag to the first field if (first and not cl.list_display_links) or field_name in cl.list_display_links: table_tag = {True:'th', False:'td'}[first]