aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 16:02:37 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 17:31:02 -0700
commit918b119bd3310c15dab4eb8a3317cc2a32503119 (patch)
tree59d12074b0ee955c80843109ef1551f13279e8d1 /actionpack/lib/action_controller/new_base
parentb4903a8e34da77b96ea136ccd015c1634a8a5c2b (diff)
downloadrails-918b119bd3310c15dab4eb8a3317cc2a32503119.tar.gz
rails-918b119bd3310c15dab4eb8a3317cc2a32503119.tar.bz2
rails-918b119bd3310c15dab4eb8a3317cc2a32503119.zip
Add support for stripping "layouts/" from the layout name
Diffstat (limited to 'actionpack/lib/action_controller/new_base')
-rw-r--r--actionpack/lib/action_controller/new_base/compatibility.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/new_base/compatibility.rb b/actionpack/lib/action_controller/new_base/compatibility.rb
index 8682493c8e..275a18abfd 100644
--- a/actionpack/lib/action_controller/new_base/compatibility.rb
+++ b/actionpack/lib/action_controller/new_base/compatibility.rb
@@ -8,5 +8,10 @@ module ActionController
super
end
+ def _layout_for_name(name)
+ name &&= name.sub(%r{^/?layouts/}, '')
+ super
+ end
+
end
end \ No newline at end of file