From eedd9d7604b6acbabb5d21fe20a87420bc07864c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 20 Mar 2006 04:37:32 +0000 Subject: Updated Kernel#returning for the AP performance patch [DHH] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3991 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index ab73e0ee86..52bddac092 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -861,7 +861,7 @@ module ActionController #:nodoc: def self.view_class @view_class ||= # create a new class based on the default template class and include helper methods - returning view_class = Class.new(ActionView::Base) do + returning Class.new(ActionView::Base) do |view_class| view_class.send(:include, master_helper_module) end end -- cgit v1.2.3