From: Tom Hughes Date: Sat, 30 Nov 2013 13:46:07 +0000 (+0000) Subject: Monkey patch escaping in redirect routes X-Git-Tag: live~4660 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/309831a61990e2d9feb76401e1999b499ece9a79?hp=309831a61990e2d9feb76401e1999b499ece9a79 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 ---