##// END OF EJS Templates
Rails3: use String#html_safe for principals_check_box_tags() at ApplicationHelper....
Toshi MARUYAMA -
r6360:e9579b10ba40
parent child
Show More
@@ -289,7 +289,7 module ApplicationHelper
289 principals.sort.each do |principal|
289 principals.sort.each do |principal|
290 s << "<label>#{ check_box_tag name, principal.id, false } #{h principal}</label>\n"
290 s << "<label>#{ check_box_tag name, principal.id, false } #{h principal}</label>\n"
291 end
291 end
292 s
292 s.html_safe
293 end
293 end
294
294
295 # Returns a string for users/groups option tags
295 # Returns a string for users/groups option tags
General Comments 0
You need to be logged in to leave comments. Login now