"#{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={})
"#{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={})