]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix remote.php for servers which doesn't support PATH_INFO
authorGeorg Ehrke <dev@georgswebsite.de>
Sun, 13 May 2012 19:41:13 +0000 (21:41 +0200)
committerGeorg Ehrke <dev@georgswebsite.de>
Sun, 13 May 2012 19:46:34 +0000 (21:46 +0200)
remote.php

index 2a7ab167d048c3dbe0b1060fddabf9a3c6207906..e115fc5073b53010b2fe38d9729b2db7b0c90984 100644 (file)
@@ -2,6 +2,11 @@
 $RUNTIME_NOSETUPFS = true;
 //$RUNTIME_NOAPPS = TRUE;
 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 = $_SERVER['PATH_INFO'];
 if (!$pos = strpos($path_info, '/', 1)) {
        $pos = strlen($path_info);