From 8a1956bd99824e803fce9e0114c5bb63bcbdbc4a Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 4 Mar 2007 20:44:01 +0000 Subject: [PATCH] Sans request please git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6317 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/request.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_controller/request.rb b/actionpack/lib/action_controller/request.rb index fa9b02919f..cc469e2e74 100755 --- a/actionpack/lib/action_controller/request.rb +++ b/actionpack/lib/action_controller/request.rb @@ -129,7 +129,7 @@ module ActionController # Returns the complete URL used for this request def url - request.protocol + request.host_with_port + request.request_uri + protocol + host_with_port + request_uri end # Return 'https://' if this is an SSL request and 'http://' otherwise.