diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-20 11:51:26 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-20 11:51:26 +0000 |
commit | 95162cd145f403aae30226e9e0162fff50113f73 (patch) | |
tree | ea6f48461b4dc3e13c4632380d92a7df85f14714 /app/helpers | |
parent | 56c97a45d3c379d3f57a09c8afeebad7132cf98c (diff) | |
download | redmine-95162cd145f403aae30226e9e0162fff50113f73.tar.gz redmine-95162cd145f403aae30226e9e0162fff50113f73.zip |
Rails3: use String#html_safe for check_all_links() at ApplicationHelper.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6489 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 07c1f7f75..0129b007a 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -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 |