mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
1b3195b63ca44f0a70b61b75fcf4991cb2fbb944
ActionView::Helpers::UrlHelper#url_for used to escape the URLs it generated by default. This was most commonly seen when generating a path with multiple query parameters, e.g. url_for(:controller => :foo, :action => :bar, :this => 123, :that => 456) would return http://example.com/foo/bar?that=456&this=123 escaping an ampersand that shouldn't be escaped. This is both wrong and inconsistent with the behavior of ActionController#url_for, and is changed. Signed-off-by: Michael Koziarski <michael@koziarski.com>
Description
No description provided
Languages
Ruby
97.9%
CSS
1.5%
HTML
0.5%