From 2a31691ee2c02af17471ffa0cdb267a8af633b50 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 22 Sep 2005 11:37:16 +0000 Subject: Fixed that auto_discovery_link_tag couldn't take a string as the URL git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2296 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/asset_tag_helper.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index efde8fa51b..b5f630aae0 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -18,13 +18,13 @@ module ActionView # # auto_discovery_link_tag(:rss, {:action => "feed"}, {:title => "My RSS"}) # => # - def auto_discovery_link_tag(type = :rss, options = {}, tag_options = {}) + def auto_discovery_link_tag(type = :rss, url_options = {}, tag_options = {}) tag( "link", - "rel" => tag_options[:rel] || "alternate", - "type" => tag_options[:type] || "application/#{type}+xml", + "rel" => tag_options[:rel] || "alternate", + "type" => tag_options[:type] || "application/#{type}+xml", "title" => tag_options[:title] || type.to_s.upcase, - "href" => url_for(options.merge(:only_path => false)) + "href" => url_options.is_a?(Hash) ? url_for(url_options.merge(:only_path => false)) : url_options ) end -- cgit v1.2.3