stefsava / google-charts-on-rails

Automatically exported from code.google.com/p/google-charts-on-rails
MIT License
0 stars 0 forks source link

Rails 3 #24

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
not compatible with rails3 

Original issue reported on code.google.com by mass...@gmail.com on 5 May 2011 at 3:15

GoogleCodeExporter commented 9 years ago
Works in Rails 3 with the following fix.

In google_charts.rb, line 84:

"#{SERVER}#{(chart_params * '&')}"

should be:

"#{SERVER}#{(chart_params * '&')}".html_safe

Original comment by adams.b...@gmail.com on 16 Aug 2011 at 11:08