diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-01 19:04:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-01 19:04:26 +0000 |
commit | 737247f4c9e2175107f8459807fc951c3744ca36 (patch) | |
tree | ce280201ee17599d4807285c20af0c76d11a532a /app/helpers | |
parent | 2c4cc25433d818066c154a0220eb0b435f59bed3 (diff) | |
download | redmine-737247f4c9e2175107f8459807fc951c3744ca36.tar.gz redmine-737247f4c9e2175107f8459807fc951c3744ca36.zip |
No PUT request to get previous/next month.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5287 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-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 20f1e8297..d898df3e9 100644 --- a/app/helpers/calendars_helper.rb +++ b/app/helpers/calendars_helper.rb @@ -35,7 +35,7 @@ module CalendarsHelper link_target = url_for(params.merge(:year => year, :month => month)) link_to_remote(link_name, - {:update => "content", :url => link_target, :method => :put}, + {:update => "content", :url => link_target, :method => :get}, {:href => link_target}) end |