aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorartemave <artemave@gmail.com>2010-12-12 20:40:40 +0000
committerwycats <wycats@gmail.com>2010-12-26 22:32:15 -0800
commit6c5a3bb3125735760e92f49c3824d757ef87c61e (patch)
tree5abb3bd0173988dd66367f269318606500736dc3 /actionpack/lib/action_view/base.rb
parentce21ea783255a30e330c7218a3043801dfe9ad52 (diff)
downloadrails-6c5a3bb3125735760e92f49c3824d757ef87c61e.tar.gz
rails-6c5a3bb3125735760e92f49c3824d757ef87c61e.tar.bz2
rails-6c5a3bb3125735760e92f49c3824d757ef87c61e.zip
all tests pass
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 92ff3380b0..95eb3446da 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -232,8 +232,8 @@ module ActionView #:nodoc:
@controller_path ||= controller && controller.controller_path
end
- def controller_prefix
- @controller_prefix ||= controller && controller._prefix
+ def controller_prefixes
+ @controller_prefixes ||= controller && controller._prefixes
end
ActiveSupport.run_load_hooks(:action_view, self)