From 3327aabe4d4f47ec6c2da5af7f2aea60f21f9a2e Mon Sep 17 00:00:00 2001
From: Georg Ehrke <dev@georgswebsite.de>
Date: Sun, 13 May 2012 21:41:13 +0200
Subject: [PATCH] fix remote.php for servers which doesn't support PATH_INFO

---
 remote.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/remote.php b/remote.php
index 2a7ab167d04..e115fc5073b 100644
--- a/remote.php
+++ b/remote.php
@@ -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);
-- 
GitLab