提交 f9650a23 编写于 作者: D David Heinemeier Hansson

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
上级 211ffd3f
......@@ -210,7 +210,7 @@ def after(controller)
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
......
......@@ -121,6 +121,13 @@ def test_empty_path_is_normalized
assert_equal 'example.org/index', @path_class.path_for(@mock_controller)
end
def test_file_extensions
get :index, :id => 'kitten.jpg'
get :index, :id => 'kitten.jpg'
assert_response :success
end
private
def content_to_cache
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册