diff options
Diffstat (limited to 'actionpack/lib')
| -rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 5199984814..8de68b3174 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -207,8 +207,7 @@ module ActionDispatch            lambda do |env|              req = Request.new(env) - -            uri = URI.parse(path_proc.call(req.params.symbolize_keys)) +            uri = URI.parse(path_proc.call(req.symbolized_path_parameters))              uri.scheme ||= req.scheme              uri.host   ||= req.host              uri.port   ||= req.port unless req.port == 80 | 
