url needs to be case sensitive to be able to have files and paths as part of the URL

This commit is contained in:
Bjoern Schiessle 2012-07-30 12:39:28 +02:00
parent 23391b3694
commit 1f2aa32d22
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class OC_OCS {
} }
// preprocess url // preprocess url
$url = strtolower($_SERVER['REQUEST_URI']); $url = $_SERVER['REQUEST_URI'];
if(substr($url,(strlen($url)-1))<>'/') $url.='/'; if(substr($url,(strlen($url)-1))<>'/') $url.='/';
$ex=explode('/',$url); $ex=explode('/',$url);
$paracount=count($ex); $paracount=count($ex);