diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-12-24 12:24:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-12-24 12:24:00 +0000 |
commit | bfd811304601edbc3c17edc1259a1029c230726d (patch) | |
tree | 9d8923db0f497f5e7d97e70407d2d3381c10f21e /app/helpers/calendars_helper.rb | |
parent | e723081ff4df9fa4002729add73316f74c4085b9 (diff) | |
download | redmine-bfd811304601edbc3c17edc1259a1029c230726d.tar.gz redmine-bfd811304601edbc3c17edc1259a1029c230726d.zip |
Adds p/n access keys for previous/next links (#18692).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@13794 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/calendars_helper.rb')
-rw-r--r-- | app/helpers/calendars_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/calendars_helper.rb b/app/helpers/calendars_helper.rb index 18a61844d..d07894825 100644 --- a/app/helpers/calendars_helper.rb +++ b/app/helpers/calendars_helper.rb @@ -53,6 +53,6 @@ module CalendarsHelper end def link_to_month(link_name, year, month, options={}) - link_to_content_update(h(link_name), params.merge(:year => year, :month => month)) + link_to_content_update(h(link_name), params.merge(:year => year, :month => month), options) end end |