aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-08-26 20:51:54 -0700
committerCarl Lerche <carllerche@mac.com>2009-08-26 20:51:54 -0700
commit4467fa7d2414d623f8d48ffb5ddb2d9ba8f60b27 (patch)
tree12dcc58011d7ba484c686e7e2f049885c2bf737b /actionpack/lib
parent78ced08338e227f6cc380bb3e0f2ee8cda131d9a (diff)
downloadrails-4467fa7d2414d623f8d48ffb5ddb2d9ba8f60b27.tar.gz
rails-4467fa7d2414d623f8d48ffb5ddb2d9ba8f60b27.tar.bz2
rails-4467fa7d2414d623f8d48ffb5ddb2d9ba8f60b27.zip
Fixed stupid mistake... nothing to see here.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/middleware.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/middleware.rb b/actionpack/lib/action_controller/middleware.rb
index d2a404c1b1..fac0ed2645 100644
--- a/actionpack/lib/action_controller/middleware.rb
+++ b/actionpack/lib/action_controller/middleware.rb
@@ -27,7 +27,7 @@ module ActionController
@_env = env
@_request = ActionDispatch::Request.new(env)
@_response = ActionDispatch::Response.new
- @_response.request = request
+ @_response.request = @_request
process(:index)
end