aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-09-25 04:03:13 -0700
committerJosé Valim <jose.valim@gmail.com>2011-09-25 04:03:13 -0700
commit933ba0cf6e20a5fac72ece21e5b51fbe485b3d90 (patch)
treea2ea6a2a140285da809ad9815c6f47df8649b98e /actionpack/lib
parentef4d1cebbc0cb4db59cdfca16d74bbf0f68a58f1 (diff)
parent5ffa69793fd3e1d4af41ebc719a6736163eb7433 (diff)
downloadrails-933ba0cf6e20a5fac72ece21e5b51fbe485b3d90.tar.gz
rails-933ba0cf6e20a5fac72ece21e5b51fbe485b3d90.tar.bz2
rails-933ba0cf6e20a5fac72ece21e5b51fbe485b3d90.zip
Merge pull request #3124 from avakhov/patch-6-stylesheet-link
escape options for the stylesheet_link_tag method
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb b/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb
index 2eb3eb31af..343153c8c5 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb
@@ -17,7 +17,7 @@ module ActionView
def asset_tag(source, options)
# We force the :request protocol here to avoid a double-download bug in IE7 and IE8
- tag("link", { "rel" => "stylesheet", "type" => Mime::CSS, "media" => "screen", "href" => ERB::Util.html_escape(path_to_asset(source, :protocol => :request)) }.merge(options), false, false)
+ tag("link", { "rel" => "stylesheet", "type" => Mime::CSS, "media" => "screen", "href" => path_to_asset(source, :protocol => :request) }.merge(options))
end
def custom_dir