diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-06-16 09:35:53 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-06-16 09:35:53 +0200 |
commit | a6531d0311d6401562827ed12da6cdc8560b70f7 (patch) | |
tree | f188258612a15c28954d0873583b59dc199c5c13 /remote.php | |
parent | fbd45a939fc52bf2e2865a35122b8abbb009b2b4 (diff) | |
parent | bf2062b09d6c3a3d1c8b94b3612b6bb940aa5b79 (diff) | |
download | nextcloud-server-a6531d0311d6401562827ed12da6cdc8560b70f7.tar.gz nextcloud-server-a6531d0311d6401562827ed12da6cdc8560b70f7.zip |
Merge branch 'master' into calendar_repeat
Diffstat (limited to 'remote.php')
-rw-r--r-- | remote.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.php b/remote.php index b1be50f36a7..0c5804221bb 100644 --- a/remote.php +++ b/remote.php @@ -5,7 +5,7 @@ require_once('lib/base.php'); if (array_key_exists('PATH_INFO', $_SERVER)){ $path_info = $_SERVER['PATH_INFO']; }else{ - $path_info = substr($_SERVER['PHP_SELF'], strpos($_SERVER['PHP_SELF'], basename(__FILE__)) + strlen(basename(__FILE__))); + $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME'])); } if ($path_info === false) { OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); |