Make base_uri case sensitive (#1150)
This commit is contained in:
parent
1175af3752
commit
929661011e
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ class Framework extends \Flake\Core\Framework {
|
|||
|
||||
# Determine PROJECT_URI
|
||||
$sProtocol = \Flake\Util\Tools::getCurrentProtocol();
|
||||
$sHttpBaseUrl = strtolower($_SERVER["REQUEST_URI"]);
|
||||
$sHttpBaseUrl = $_SERVER["REQUEST_URI"];
|
||||
$sHttpBaseUrl = self::rmQuery($sHttpBaseUrl);
|
||||
$sHttpBaseUrl = self::rmScriptName($sHttpBaseUrl, $sScript);
|
||||
$sHttpBaseUrl = self::rmProjectContext($sHttpBaseUrl);
|
||||
|
|
Loading…
Add table
Reference in a new issue