aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/response.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-10-09 23:07:36 +0000
committerMichael Koziarski <michael@koziarski.com>2007-10-09 23:07:36 +0000
commit4aabe46341dd6db9bf9bbbbc27c32f467a7c55b7 (patch)
tree30a7dc0bf2b0e3756caba87556ef340071769a5b /actionpack/lib/action_controller/response.rb
parent19c9c7fafbc7c808c080317a1326c4fbc6068bea (diff)
downloadrails-4aabe46341dd6db9bf9bbbbc27c32f467a7c55b7.tar.gz
rails-4aabe46341dd6db9bf9bbbbc27c32f467a7c55b7.tar.bz2
rails-4aabe46341dd6db9bf9bbbbc27c32f467a7c55b7.zip
Add :status to redirect_to allowing users to choose their own response code without manually setting headers. Closes #8297 [codahale, chasgrundy]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7820 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/response.rb')
-rwxr-xr-xactionpack/lib/action_controller/response.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/response.rb b/actionpack/lib/action_controller/response.rb
index 84edafd7bf..1d9f6676ba 100755
--- a/actionpack/lib/action_controller/response.rb
+++ b/actionpack/lib/action_controller/response.rb
@@ -28,8 +28,8 @@ module ActionController
charset.blank? ? nil : charset.strip.split("=")[1]
end
- def redirect(to_url, permanently = false)
- self.headers["Status"] = "302 Found" unless headers["Status"] == "301 Moved Permanently"
+ def redirect(to_url, response_status)
+ self.headers["Status"] = response_status
self.headers["Location"] = to_url
self.body = "<html><body>You are being <a href=\"#{to_url}\">redirected</a>.</body></html>"