Aligned the order of the arguments of render_template and render_with_layout

This commit is contained in:
Shigeyuki-fukuda 2019-03-25 00:13:20 +09:00
parent 3296dc2589
commit c546f9040e
1 changed files with 2 additions and 2 deletions

View File

@ -49,14 +49,14 @@ module ActionView
# Renders the given template. A string representing the layout can be
# supplied as well.
def render_template(view, template, layout_name, locals)
render_with_layout(view, layout_name, template, locals) do |layout|
render_with_layout(view, template, layout_name, locals) do |layout|
instrument(:template, identifier: template.identifier, layout: layout.try(:virtual_path)) do
template.render(view, locals) { |*name| view._layout_for(*name) }
end
end
end
def render_with_layout(view, path, template, locals)
def render_with_layout(view, template, path, locals)
layout = path && find_layout(path, locals.keys, [formats.first])
content = yield(layout)