From a0a665ea459fe96a0006766cc0d0b25e5cd258df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 25 Nov 2013 14:21:51 +0100 Subject: handle duplicate slashes in case of reverse proxy configuration --- lib/private/request.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/private/request.php') diff --git a/lib/private/request.php b/lib/private/request.php index d11e5b16cfe..9cf09ac7343 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -136,7 +136,10 @@ class OC_Request { * @returns string Path info or false when not found */ public static function getRawPathInfo() { - $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME'])); + $requestUri = $_SERVER['REQUEST_URI']; + // remove too many leading slashes - can be caused by reverse proxy configuration + $requestUri = '/' . ltrim($requestUri, '/'); + $path_info = substr($requestUri, strlen($_SERVER['SCRIPT_NAME'])); // Remove the query string from REQUEST_URI if ($pos = strpos($path_info, '?')) { $path_info = substr($path_info, 0, $pos); -- cgit v1.2.3