aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-04-21 01:33:48 -0300
committerJeremy Kemper <jeremy@bitsweat.net>2010-04-21 17:09:14 -0700
commit5c9c30ac65d25bd5a83d773739c2cd8fdd6da4d3 (patch)
tree684ba440c364c82de1f3f245b08dfb495a3b03b5 /actionpack/lib/action_view
parent726b5d79845c0ef50db64e2991bfec4e108faf4d (diff)
downloadrails-5c9c30ac65d25bd5a83d773739c2cd8fdd6da4d3.tar.gz
rails-5c9c30ac65d25bd5a83d773739c2cd8fdd6da4d3.tar.bz2
rails-5c9c30ac65d25bd5a83d773739c2cd8fdd6da4d3.zip
url_for now works with HashWithIndifferentAccess ht jay [#4391 state:committed]
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers/url_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb
index 4ffc5ea127..13a54b0c21 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -102,7 +102,7 @@ module ActionView
escape = true
options
when Hash
- options = { :only_path => options[:host].nil? }.update(options.symbolize_keys)
+ options = { :only_path => options[:host].nil? }.update(options.to_hash.symbolize_keys)
escape = options.key?(:escape) ? options.delete(:escape) : false
super
when :back