aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/components.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/components.rb')
-rw-r--r--actionpack/lib/action_controller/components.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/components.rb b/actionpack/lib/action_controller/components.rb
index 0515461910..a7f5be2e6a 100644
--- a/actionpack/lib/action_controller/components.rb
+++ b/actionpack/lib/action_controller/components.rb
@@ -126,11 +126,11 @@ module ActionController #:nodoc:
def component_response(options, reuse_response)
klass = component_class(options)
request = request_for_component(klass.controller_name, options)
- response = reuse_response ? @response : @response.dup
+ new_response = reuse_response ? response : response.dup
- klass.process_with_components(request, response, self)
+ klass.process_with_components(request, new_response, self)
end
-
+
# determine the controller class for the component request
def component_class(options)
if controller = options[:controller]