summaryrefslogtreecommitdiffstats
path: root/app/helpers/calendars_helper.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-02 12:48:24 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-02 12:48:24 +0000
commit44eabad2d75203fd782d81b01468237074482010 (patch)
tree8c3e868f237e7e1a215036b4b364c4856f81eec7 /app/helpers/calendars_helper.rb
parentfea3a1baf13a2bb77cbede5ed40cb5a8f4936cf5 (diff)
downloadredmine-44eabad2d75203fd782d81b01468237074482010.tar.gz
redmine-44eabad2d75203fd782d81b01468237074482010.zip
HTML escape at app/helpers/calendars_helper.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6351 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/calendars_helper.rb')
-rw-r--r--app/helpers/calendars_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/calendars_helper.rb b/app/helpers/calendars_helper.rb
index 82f3905e7..3e37f69c1 100644
--- a/app/helpers/calendars_helper.rb
+++ b/app/helpers/calendars_helper.rb
@@ -32,6 +32,6 @@ module CalendarsHelper
end
def link_to_month(link_name, year, month, options={})
- link_to_content_update(link_name, params.merge(:year => year, :month => month))
+ link_to_content_update(h(link_name), params.merge(:year => year, :month => month))
end
end