diff options
-rwxr-xr-x | actionpack/lib/action_controller/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 0793178a93..da48dc3255 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -1003,7 +1003,7 @@ module ActionController #:nodoc: end def template_exempt_from_layout?(template_name = default_template_name) - @template.pick_template_extension(template_name).to_sym == :rjs + template_name.last(3) == "rjs" || @template.pick_template_extension(template_name).to_sym == :rjs rescue false end |