aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/caching.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-23 06:33:28 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-23 06:33:28 +0000
commit562b398fd729b05bfde4da90b91efc24dbbac49d (patch)
treec83bdedb4104bf6dd72f7842f3beecf88d27d779 /actionpack/lib/action_controller/caching.rb
parent28729a4829c68409717ecf82a6b407672ff5fa7d (diff)
downloadrails-562b398fd729b05bfde4da90b91efc24dbbac49d.tar.gz
rails-562b398fd729b05bfde4da90b91efc24dbbac49d.tar.bz2
rails-562b398fd729b05bfde4da90b91efc24dbbac49d.zip
Some mime type refactoring. Closes #9957 [Josh Peek]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8001 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/caching.rb')
-rw-r--r--actionpack/lib/action_controller/caching.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index 3c2202e038..ce03a979f8 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -251,7 +251,7 @@ module ActionController #:nodoc:
private
def set_content_type!(controller, extension)
- controller.response.content_type = Mime::EXTENSION_LOOKUP[extension].to_s if extension
+ controller.response.content_type = Mime::Type.lookup_by_extension(extension).to_s if extension
end
def path_options_for(controller, options)