aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-03-16 13:55:36 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-03-16 13:55:36 +0000
commitc593721e7c5749311c5c8e503c3b248194292d6f (patch)
tree1b0e999903e5674ceae83ed61e66751d2a4bd719 /actionpack/lib/action_controller
parentbcff10adeccca10c75ef3c9539deb039c0bd775c (diff)
downloadrails-c593721e7c5749311c5c8e503c3b248194292d6f.tar.gz
rails-c593721e7c5749311c5c8e503c3b248194292d6f.tar.bz2
rails-c593721e7c5749311c5c8e503c3b248194292d6f.zip
Revert [6430] since the test is faulty. References #7837, closes #7842.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6435 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller')
-rwxr-xr-xactionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index d6c7677d55..2f7919cc07 100755
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -1037,7 +1037,7 @@ module ActionController #:nodoc:
response.redirected_to = options
else
# TOOD: Deprecate me!
- redirect_to(url_for(options))
+ redirect_to(url_for(options, *parameters_for_method_reference))
response.redirected_to, response.redirected_to_method_params = options, parameters_for_method_reference
end
end