fix calendar links for previous/next month (#8989).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6406 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-05 13:53:54 +00:00
parent 1ecaaa7ed7
commit 2b1dd9da42
1 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,8 @@ module CalendarsHelper
"#{month_name(target_month)}"
end
link_to_month(('« ' + name), target_year, target_month, options)
# \xc2\xab(utf-8) = «
link_to_month(("\xc2\xab " + name), target_year, target_month, options)
end
def link_to_next_month(year, month, options={})
@ -28,7 +29,8 @@ module CalendarsHelper
"#{month_name(target_month)}"
end
link_to_month((name + ' »'), target_year, target_month, options)
# \xc2\xbb(utf-8) = »
link_to_month((name + " \xc2\xbb"), target_year, target_month, options)
end
def link_to_month(link_name, year, month, options={})