]> git.openstreetmap.org Git - rails.git/commit
Monkey patch escaping in redirect routes
authorTom Hughes <tom@compton.nu>
Sat, 30 Nov 2013 13:46:07 +0000 (13:46 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 30 Nov 2013 13:53:48 +0000 (13:53 +0000)
commit309831a61990e2d9feb76401e1999b499ece9a79
tree712348ebbbceebafdb57b2b97ef884db066ed1c9
parenta2b9f593f5e55356e99a310929141495b68b1c3b
Monkey patch escaping in redirect routes

The correct method of escaping depends on whether the parameter
is being substituted in the path or the query, but all our ones
are substitued in the path so use URI.escape instead of the
standard Rack::Utils.escape which does query escaping.

https://github.com/rails/rails/issues/13110
config/initializers/routing_redirect.rb [new file with mode: 0644]