diff options
author | Carl Lerche <carllerche@mac.com> | 2010-03-16 14:55:42 -0700 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2010-03-16 15:47:49 -0700 |
commit | 23b6def0eb76ac0719e420fce91ba862f880a37b (patch) | |
tree | 53ecc35cf7737fd3c3382ce54f07630d1021054d /actionpack/lib/action_view/base.rb | |
parent | 3abf5ad7f8b23d955225ba96e82fd5565dd2571d (diff) | |
download | rails-23b6def0eb76ac0719e420fce91ba862f880a37b.tar.gz rails-23b6def0eb76ac0719e420fce91ba862f880a37b.tar.bz2 rails-23b6def0eb76ac0719e420fce91ba862f880a37b.zip |
Do not always include the named URL helpers into AC::Base and AV::Base.
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index 3920d8593f..daabe6d196 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -235,6 +235,10 @@ module ActionView #:nodoc: include controller._helpers self.helpers = controller._helpers end + + if controller.respond_to?(:_router) + include controller._router.url_helpers + end end else klass = self |