Escaped Links in Rails3

I am working on a site that just upgraded to Rails 3 which for some reason displays escaped links as &#47's instead of forward slashes.....any idea if this will hinder google or any other bots ability to crawl the website? Any way to fix this easily? Any and all help with this would be awesome.

No Name <michael.lovelady@...> writes:

I am working on a site that just upgraded to Rails 3 which for some reason displays escaped links as &#47's instead of forward slashes.....any idea if this will hinder google or any other bots ability to crawl the website? Any way to fix this easily? Any and all help with this would be awesome.

Rails 3 escapes data in the view by default for security reasons. If you want to change this behaviour (ie, if you are convinced the data will always be trustworthy) then you can alter your views to display the raw information.

<% raw link_to ....