converting to string makes this not an htmlsafe buffer

This commit is contained in:
Maxwell Salzberg 2012-01-04 12:03:15 -08:00
parent 6859f97145
commit cf2c12d98b

View file

@ -73,6 +73,6 @@ module ApplicationHelper
end
def popover_with_close_html(without_close_html)
without_close_html + "#{link_to(image_tag('deletelabel.png'), "#", :class => 'close')}"
without_close_html + link_to(image_tag('deletelabel.png'), "#", :class => 'close')
end
end