diff options
Diffstat (limited to 'remote.php')
-rw-r--r-- | remote.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/remote.php b/remote.php index 8dc4df1bd23..483b19555c8 100644 --- a/remote.php +++ b/remote.php @@ -2,11 +2,7 @@ $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['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME'])); -} +$path_info = OC_Request::getPathInfo(); if ($path_info === false) { OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); exit; |