aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base/mime_responds.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-16 13:44:51 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-16 13:44:51 -0700
commitdd58f4021da30af7f40ee139e7487b887cac44e9 (patch)
tree34cb015228013c437851a3a13d7059357e57db13 /actionpack/lib/action_controller/base/mime_responds.rb
parent01a4bc84b8787df74d54147a0cf564df75e87970 (diff)
downloadrails-dd58f4021da30af7f40ee139e7487b887cac44e9.tar.gz
rails-dd58f4021da30af7f40ee139e7487b887cac44e9.tar.bz2
rails-dd58f4021da30af7f40ee139e7487b887cac44e9.zip
An exception is raised if a layout is missing only if the layout is missing for all mimes
Diffstat (limited to 'actionpack/lib/action_controller/base/mime_responds.rb')
-rw-r--r--actionpack/lib/action_controller/base/mime_responds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base/mime_responds.rb b/actionpack/lib/action_controller/base/mime_responds.rb
index 5c7218691e..c0aa58a6c2 100644
--- a/actionpack/lib/action_controller/base/mime_responds.rb
+++ b/actionpack/lib/action_controller/base/mime_responds.rb
@@ -124,8 +124,8 @@ module ActionController #:nodoc:
@controller.formats = [mime_type.to_sym]
end
+ @controller.content_type = mime_type
@controller.template.formats = [mime_type.to_sym]
- @response.content_type = mime_type
block_given? ? block.call : @controller.send(:render, :action => @controller.action_name)
end