Skip to content
Snippets Groups Projects
Commit 1f2aa32d authored by Björn Schießle's avatar Björn Schießle
Browse files

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

parent 23391b36
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ class OC_OCS {
}
// preprocess url
$url = strtolower($_SERVER['REQUEST_URI']);
$url = $_SERVER['REQUEST_URI'];
if(substr($url,(strlen($url)-1))<>'/') $url.='/';
$ex=explode('/',$url);
$paracount=count($ex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment