Merge commit 'refs/merge-requests/121' of git://gitorious.org/owncloud/owncloud

This commit is contained in:
Bart Visscher 2012-06-16 00:15:02 +02:00
commit 18ce53f426
1 changed files with 1 additions and 1 deletions

View File

@ -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);