diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-09 22:42:24 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-09 22:42:24 +0000 |
commit | d66c9cba55c434c2248864153ce50792fe7e077d (patch) | |
tree | 4a13451170523849eff35ecf46bbb1610427e0da /actionpack/lib/action_view/helpers | |
parent | c6c3fc42d8fb971692d5c15406bde299345f879b (diff) | |
download | rails-d66c9cba55c434c2248864153ce50792fe7e077d.tar.gz rails-d66c9cba55c434c2248864153ce50792fe7e077d.tar.bz2 rails-d66c9cba55c434c2248864153ce50792fe7e077d.zip |
Removed the deprecated behavior of appending ".png" to image_tag/image_path calls without an existing extension [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7433 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helper.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index 497bf1aca1..6bef5989ce 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -315,8 +315,7 @@ module ActionView # Computes the path to an image asset in the public images directory. # Full paths from the document root will be passed through. - # Used internally by image_tag to build the image path. Passing - # a filename without an extension is deprecated. + # Used internally by image_tag to build the image path. # # ==== Examples # image_path("edit") # => /images/edit |