aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderable.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-08-31 03:44:00 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-08-31 03:48:09 +0100
commita59a3db1f3ae8c6aadaa8e1ce08b05f9ad677932 (patch)
treef54b4998a217ff4a0fc6d94fca9e3fd9d88dc694 /actionpack/lib/action_view/renderable.rb
parent6183e55f714b436335dc843528be7525c342d922 (diff)
downloadrails-a59a3db1f3ae8c6aadaa8e1ce08b05f9ad677932.tar.gz
rails-a59a3db1f3ae8c6aadaa8e1ce08b05f9ad677932.tar.bz2
rails-a59a3db1f3ae8c6aadaa8e1ce08b05f9ad677932.zip
Move copying ivar logic from ActionController::Base to ActionView::Base
Diffstat (limited to 'actionpack/lib/action_view/renderable.rb')
-rw-r--r--actionpack/lib/action_view/renderable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/renderable.rb b/actionpack/lib/action_view/renderable.rb
index fa45edd436..5d950e336e 100644
--- a/actionpack/lib/action_view/renderable.rb
+++ b/actionpack/lib/action_view/renderable.rb
@@ -29,7 +29,7 @@ module ActionView
view._first_render ||= self
view._last_render = self
- view.send(:evaluate_assigns)
+ view.send(:evaluate_assigns_and_ivars)
view.send(:set_controller_content_type, mime_type) if respond_to?(:mime_type)
view.send(method_name(local_assigns), local_assigns) do |*names|