leppert/remotipart

Content of textarea needs to be html escaped

Closed this issue · 1 comments

Fix is to remove the html_safe flag (is there a better way?), so the content will automatically be correctly html escaped:

change:

text_area_tag 'remotipart_response', content

to:

text_area_tag('remotipart_response', String.new(content))

Fixed with version 0.2.0 released today. Thanks for the feedback and help.