##// END OF EJS Templates
Rails3: use String#html_safe for render_flash_messages() at ApplicationHelper....
Toshi MARUYAMA -
r6356:e1d7cf27bf66
parent child
Show More
@@ -209,7 +209,7 module ApplicationHelper
209 209 flash.each do |k,v|
210 210 s << content_tag('div', v, :class => "flash #{k}")
211 211 end
212 s
212 s.html_safe
213 213 end
214 214
215 215 # Renders tabs and their content
General Comments 0
You need to be logged in to leave comments. Login now