From 8896efd41aca929ef91ee28a0e406bffeb253834 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 19 Feb 2006 00:46:34 +0000 Subject: Ensure backwards compatibility with symbolized action names for render_action (closes #3869) [anna@wota.jp] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3606 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib/action_controller') diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 08a2d7643f..4551dd9f74 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -664,7 +664,7 @@ module ActionController #:nodoc: end def render_action(action_name, status = nil, with_layout = true) - template = default_template_name(action_name) + template = default_template_name(action_name.to_s) if with_layout && !template_exempt_from_layout?(template) render_with_layout(template, status) else -- cgit v1.2.3