diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-09 00:56:13 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-09 00:56:13 +0000 |
commit | f9650a23f060c0d8678b2bda45e502f0bca487cc (patch) | |
tree | b29c41791ec398f35298f59cc14d963f5e9e1af1 /actionpack/lib | |
parent | 211ffd3f792d2d0823365bdb49d29b9f7ed99ca0 (diff) | |
download | rails-f9650a23f060c0d8678b2bda45e502f0bca487cc.tar.gz rails-f9650a23f060c0d8678b2bda45e502f0bca487cc.tar.bz2 rails-f9650a23f060c0d8678b2bda45e502f0bca487cc.zip |
Fixed that caches_action breaks with file extensions (closes #6257) [Catfish]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5248 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index fa45b46e05..926535da03 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -210,7 +210,7 @@ module ActionController #:nodoc: def set_content_type!(action_cache_path) if extention = action_cache_path.extension content_type = Mime::EXTENSION_LOOKUP[extention] - action_cache_path.controller.content_type = content_type.to_s + action_cache_path.controller.response.content_type = content_type.to_s end end |