Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-11-25 17:21:51 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-11-25 17:21:51 +0400
commita0a665ea459fe96a0006766cc0d0b25e5cd258df (patch)
treeab426a2ff9e3c7a2024f51efe2736cc8a2dc541a /lib/private/request.php
parentde2b4440301badf48e638ede84f64692f2a2db41 (diff)
handle duplicate slashes in case of reverse proxy configuration
Diffstat (limited to 'lib/private/request.php')
-rwxr-xr-xlib/private/request.php5
1 files changed, 4 insertions, 1 deletions
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);