From: Philipp Holzer Date: Tue, 30 Oct 2018 11:58:15 +0000 (+0100) Subject: Bugfixing missing 'REQUEST_URI' for relative path installation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e586e49c824ddc7314fa0fe66349b749d170eb3e;p=friendica.git Bugfixing missing 'REQUEST_URI' for relative path installation --- diff --git a/src/App.php b/src/App.php index ff118ac725..2acb7eb362 100644 --- a/src/App.php +++ b/src/App.php @@ -505,6 +505,7 @@ class App $relative_script_path = defaults($_SERVER, 'REDIRECT_URI' , $relative_script_path); $relative_script_path = defaults($_SERVER, 'REDIRECT_SCRIPT_URL', $relative_script_path); $relative_script_path = defaults($_SERVER, 'SCRIPT_URL' , $relative_script_path); + $relative_script_path = defaults($_SERVER, 'REQUEST_URI' , $relative_script_path); $this->urlPath = $this->getConfigValue('system', 'urlpath');