aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/base.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 923a1c28da..fbc9a66a05 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -243,7 +243,9 @@ module ActionView #:nodoc:
# Get the selector for this template and names, then call the method.
selector = @@compiled_templates.selector(identifier, names)
evaluate_assigns
- send(selector, *params)
+ send(selector, *params) do |*name|
+ instance_variable_get "@content_for_#{name.first || 'layout'}"
+ end
end
def pick_template_extension(template_path)#:nodoc: