##// END OF EJS Templates
Rails3: use String#html_safe for check_all_links() at ApplicationHelper....
Toshi MARUYAMA -
r6369:95162cd145f4
parent child
Show More
@@ -794,7 +794,7 module ApplicationHelper
794
794
795 def check_all_links(form_name)
795 def check_all_links(form_name)
796 link_to_function(l(:button_check_all), "checkAll('#{form_name}', true)") +
796 link_to_function(l(:button_check_all), "checkAll('#{form_name}', true)") +
797 " | " +
797 " | ".html_safe +
798 link_to_function(l(:button_uncheck_all), "checkAll('#{form_name}', false)")
798 link_to_function(l(:button_uncheck_all), "checkAll('#{form_name}', false)")
799 end
799 end
800
800
General Comments 0
You need to be logged in to leave comments. Login now