From 995f57033f5a36d9ddd3aa65f0f01cccbb6baf6e Mon Sep 17 00:00:00 2001 From: wycats Date: Thu, 18 Mar 2010 22:21:25 -0700 Subject: We seem to have removed the URL helpers from ActionView subclasses... --- actionpack/lib/abstract_controller/rendering.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'actionpack/lib/abstract_controller/rendering.rb') diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb index 58d339d563..cde14916f2 100644 --- a/actionpack/lib/abstract_controller/rendering.rb +++ b/actionpack/lib/abstract_controller/rendering.rb @@ -49,6 +49,7 @@ module AbstractController Class.new(ActionView::Base) do if controller.respond_to?(:_helpers) include controller._helpers + include controller._router.url_helpers # TODO: Fix RJS to not require this self.helpers = controller._helpers end @@ -63,6 +64,11 @@ module AbstractController @view_context_class || self.class.view_context_class end + def initialize(*) + @view_context_class = nil + super + end + # An instance of a view class. The default view class is ActionView::Base # # The view class must have the following methods: -- cgit v1.2.3