You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Method construct_html in navigator.rb calls self.view.content_tag with an array as argument #2, relying on ruby1.8 behaviour to automatically create a string by joining the array member strings. In ruby 1.9 this no longer woks, instead of "links" you should use "links.join" as second argument.
The text was updated successfully, but these errors were encountered:
Method construct_html in navigator.rb calls self.view.content_tag with an array as argument #2, relying on ruby1.8 behaviour to automatically create a string by joining the array member strings. In ruby 1.9 this no longer woks, instead of "links" you should use "links.join" as second argument.
The text was updated successfully, but these errors were encountered: