diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-28 18:52:56 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-28 18:54:12 -0300 |
commit | 5747e53c92c3fbb52814c3313c489f2a208f685f (patch) | |
tree | e4470e01663f8f4b3a9b983eb8c5af713773224e /actionpack/lib | |
parent | f369f7747186f9c619856a1f3004a4d5d6c94fd3 (diff) | |
download | rails-5747e53c92c3fbb52814c3313c489f2a208f685f.tar.gz rails-5747e53c92c3fbb52814c3313c489f2a208f685f.tar.bz2 rails-5747e53c92c3fbb52814c3313c489f2a208f685f.zip |
Set proper rendered_format when doing render :inline
Closes #5632
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/renderer/template_renderer.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/renderer/template_renderer.rb b/actionpack/lib/action_view/renderer/template_renderer.rb index 36c1e6a9e4..a27d5dd1b1 100644 --- a/actionpack/lib/action_view/renderer/template_renderer.rb +++ b/actionpack/lib/action_view/renderer/template_renderer.rb @@ -11,8 +11,8 @@ module ActionView context = @lookup_context unless context.rendered_format - context.rendered_format = template.formats.first - context.formats = template.formats + context.formats = template.formats unless template.formats.empty? + context.rendered_format = context.formats.first end render_template(template, options[:layout], options[:locals]) |