mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue