From f39fe3091fe17b2f8b7836af78e033d1c939a832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20L=C3=BCtke?= Date: Mon, 19 Mar 2007 18:02:24 +0000 Subject: Fix nil error for requests with empty PATH_INFO header such as those which are send by the ScanAlert spider git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6451 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 cd80415f82..5279315023 100755 --- a/actionpack/lib/action_controller/request.rb +++ b/actionpack/lib/action_controller/request.rb @@ -209,7 +209,7 @@ module ActionController # Returns the interpreted path to requested resource after all the installation directory of this application was taken into account def path - path = (uri = request_uri) ? uri.split('?').first : '' + path = (uri = request_uri) ? uri.split('?').first.to_s : '' # Cut off the path to the installation directory if given path.sub!(%r/^#{relative_url_root}/, '') -- cgit v1.2.3