aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/render/rendering.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/render/rendering.rb')
-rw-r--r--actionpack/lib/action_view/render/rendering.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/render/rendering.rb b/actionpack/lib/action_view/render/rendering.rb
index 32c30e8f68..527cef97c7 100644
--- a/actionpack/lib/action_view/render/rendering.rb
+++ b/actionpack/lib/action_view/render/rendering.rb
@@ -40,7 +40,7 @@ module ActionView
end
end
- def _render_content_with_layout(content, layout, locals)
+ def _render_content(content, layout, locals)
return content unless layout
locals ||= {}
@@ -116,11 +116,11 @@ module ActionView
handler = Template.handler_class_for_extension(options[:type] || "erb")
template = Template.new(options[:inline], "inline #{options[:inline].inspect}", handler, {})
content = _render_template(template, options[:locals] || {})
- layout ? _render_content_with_layout(content, layout, options[:locals]) : content
+ layout ? _render_content(content, layout, options[:locals]) : content
end
def _render_text(text, layout, options)
- layout ? _render_content_with_layout(text, layout, options[:locals]) : text
+ layout ? _render_content(text, layout, options[:locals]) : text
end
# This is the API to render a ViewContext's template from a controller.
@@ -146,7 +146,7 @@ module ActionView
_render_template(template, locals)
end
- layout ? _render_content_with_layout(content, layout, locals) : content
+ _render_content(content, layout, locals)
end
end
end \ No newline at end of file