##// END OF EJS Templates
Rails3: helper: html_safe for render_flash_messages method at ApplicationHelper...
Toshi MARUYAMA -
r8001:6d805cfca22f
parent child
Show More
@@ -214,7 +214,7 module ApplicationHelper
214 def render_flash_messages
214 def render_flash_messages
215 s = ''
215 s = ''
216 flash.each do |k,v|
216 flash.each do |k,v|
217 s << content_tag('div', v, :class => "flash #{k}")
217 s << (content_tag('div', v.html_safe, :class => "flash #{k}"))
218 end
218 end
219 s.html_safe
219 s.html_safe
220 end
220 end
General Comments 0
You need to be logged in to leave comments. Login now