Ticket #6226: allow_tags_fix.diff
File allow_tags_fix.diff, 590 bytes (added by , 17 years ago) |
---|
-
django/contrib/admin/templatetags/admin_list.py
148 148 # function has an "allow_tags" attribute set to True. 149 149 if not allow_tags: 150 150 result_repr = escape(result_repr) 151 else: 152 result_repr = mark_safe(result_repr) 151 153 else: 152 154 field_val = getattr(result, f.attname) 153 155