aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
diff options
context:
space:
mode:
authorAndrew Kaspick <andrew@redlinesoftware.com>2011-08-11 13:28:31 -0500
committerAndrew Kaspick <andrew@redlinesoftware.com>2011-08-11 13:28:31 -0500
commit61579b76616d06ccb8268411421c23fb612e5113 (patch)
tree3d23300d0335dea7cdde74277f47d902158623b6 /actionpack/lib/action_dispatch
parente6fdfd0f6f80d47c97152826322ea8b01519b5c2 (diff)
downloadrails-61579b76616d06ccb8268411421c23fb612e5113.tar.gz
rails-61579b76616d06ccb8268411421c23fb612e5113.tar.bz2
rails-61579b76616d06ccb8268411421c23fb612e5113.zip
when calling url_for with a hash, additional (likely unwanted) values (such as :host) would be returned in the hash... calling #dup on the hash prevents this
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r--actionpack/lib/action_dispatch/routing/url_for.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/url_for.rb b/actionpack/lib/action_dispatch/routing/url_for.rb
index 480144fe9d..5d354b0fb8 100644
--- a/actionpack/lib/action_dispatch/routing/url_for.rb
+++ b/actionpack/lib/action_dispatch/routing/url_for.rb
@@ -140,7 +140,7 @@ module ActionDispatch
when String
options
when nil, Hash
- _routes.url_for((options || {}).reverse_merge!(url_options).symbolize_keys)
+ _routes.url_for((options.dup || {}).reverse_merge!(url_options).symbolize_keys)
else
polymorphic_url(options)
end