From 60caf0e66172667400777674d09ade1032907076 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 31 Dec 2004 17:07:20 +0000 Subject: Added "short hypertext note with a hyperlink to the new URI(s)" to redirects to fulfill compliance with RFC 2616 (HTTP/1.1) section 10.3.3 #397 [Tim Bates] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@294 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/response.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'actionpack/lib/action_controller') diff --git a/actionpack/lib/action_controller/response.rb b/actionpack/lib/action_controller/response.rb index a574fbca75..2e6c5fcc37 100755 --- a/actionpack/lib/action_controller/response.rb +++ b/actionpack/lib/action_controller/response.rb @@ -10,6 +10,8 @@ module ActionController def redirect(to_url, permanently = false) @headers["Status"] = permanently ? "301 Moved Permanently" : "302 Found" @headers["location"] = to_url + + @body = "You are being redirected." end end end \ No newline at end of file -- cgit v1.2.3