aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderer/template_renderer.rb
diff options
context:
space:
mode:
authorNick Sutterer <apotonick@gmail.com>2011-09-22 23:51:44 +0200
committerJosé Valim <jose.valim@gmail.com>2011-09-23 00:36:14 +0200
commit2e3eb2560b7686a633d6de35c4cd9131504aee38 (patch)
treed9d77ff6e83258279d8a2619257a9aa455aaa4b9 /actionpack/lib/action_view/renderer/template_renderer.rb
parentf8e6664d8647acf11c8f98e00ec5a23326be5d19 (diff)
downloadrails-2e3eb2560b7686a633d6de35c4cd9131504aee38.tar.gz
rails-2e3eb2560b7686a633d6de35c4cd9131504aee38.tar.bz2
rails-2e3eb2560b7686a633d6de35c4cd9131504aee38.zip
Allow both sym and array for details options in #render. using LC#registered_details to extract options.
Diffstat (limited to 'actionpack/lib/action_view/renderer/template_renderer.rb')
-rw-r--r--actionpack/lib/action_view/renderer/template_renderer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/renderer/template_renderer.rb b/actionpack/lib/action_view/renderer/template_renderer.rb
index f3e7378f2b..ac91d333ba 100644
--- a/actionpack/lib/action_view/renderer/template_renderer.rb
+++ b/actionpack/lib/action_view/renderer/template_renderer.rb
@@ -5,7 +5,7 @@ module ActionView
class TemplateRenderer < AbstractRenderer #:nodoc:
def render(context, options)
@view = context
- @details = options.slice(:formats, :locale, :handlers)
+ @details = extract_details(options)
extract_format(options[:file] || options[:template], @details)
template = determine_template(options)
freeze_formats(template.formats, true)