]> source.dussan.org Git - redmine.git/commitdiff
Rails3: use String#html_safe for check_all_links() at ApplicationHelper.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 20 Aug 2011 11:51:26 +0000 (11:51 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 20 Aug 2011 11:51:26 +0000 (11:51 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6489 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb

index 07c1f7f75dfbf1a906d5c44178f5286bb77568f3..0129b007a08542a1ef340476981e33824ebb0dd4 100644 (file)
@@ -794,7 +794,7 @@ module ApplicationHelper
 
   def check_all_links(form_name)
     link_to_function(l(:button_check_all), "checkAll('#{form_name}', true)") +
-    " | " +
+    " | ".html_safe +
     link_to_function(l(:button_uncheck_all), "checkAll('#{form_name}', false)")
   end