HWIA symbolize_keys now returns a hash so no need to do this anymore

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
This commit is contained in:
Santiago Pastorino 2010-04-22 12:35:44 -03:00 committed by Jeremy Kemper
parent 920df0a475
commit ebf9820f7e
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ module ActionView
escape = true
options
when Hash
options = { :only_path => options[:host].nil? }.update(options.to_hash.symbolize_keys)
options = { :only_path => options[:host].nil? }.update(options.symbolize_keys)
escape = options.key?(:escape) ? options.delete(:escape) : false
super
when :back