diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-06-08 19:35:30 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-06-08 19:37:52 -0700 |
commit | 23f3b567e2983a295937b40e142f965188f7c83c (patch) | |
tree | 6f186544daed1a29329dad05df0f6b65c429f420 | |
parent | 5b256ac36922b4dfa4ab7aa639757c4817d06680 (diff) | |
download | rails-23f3b567e2983a295937b40e142f965188f7c83c.tar.gz rails-23f3b567e2983a295937b40e142f965188f7c83c.tar.bz2 rails-23f3b567e2983a295937b40e142f965188f7c83c.zip |
Uses Hash#symbolize_keys
-rw-r--r-- | actionpack/lib/action_view/helpers/url_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb index a861102166..de864f453c 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -1,4 +1,5 @@ require 'action_view/helpers/javascript_helper' +require 'active_support/core_ext/hash/keys' module ActionView module Helpers #:nodoc: |