url needs to be case sensitive to be able to have files and paths as part of the URL
This commit is contained in:
parent
23391b3694
commit
1f2aa32d22
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue