Opened 16 years ago

Closed 16 years ago

#6334 closed (duplicate)

MultiWidget should return mark_safe string

Reported by: anonymous Owned by: nobody
Component: Forms Version: dev
Severity: Keywords: Multiwidget auto escape
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Multiwidget should return mark_safe string in order to avoid widgets to be auto escaped.

seems that :

return self.format_output(output)

should be change in :

return mark_safe(self.format_output(output))

Attachments (1)

patch.diff (639 bytes ) - added by xgdlm <grangier@…> 16 years ago.

Download all attachments as: .zip

Change History (2)

by xgdlm <grangier@…>, 16 years ago

Attachment: patch.diff added

comment:1 by Matt McClanahan, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #6113.

Note: See TracTickets for help on using tickets.
Back to Top