diff options
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index d380564c23..62928e2777 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -228,7 +228,7 @@ module ActionDispatch options = handle_positional_args(t, args, @options, @segment_keys) hash = { :only_path => options[:host].nil? - }.merge!(options.symbolize_keys) + }.merge!(options) hash.reverse_merge!(t.url_options) t._routes.url_for(hash) end |