Merge pull request #2164 from annando/1512-basepath-2

Avoid problems with wrong configured server variables
2022.09-rc
fabrixxm 2015-12-09 19:17:48 +01:00
commit 679ae1c035
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -634,15 +634,15 @@ if(! class_exists('App')) {
$basepath = get_config("system", "basepath");
if ($basepath == "")
$basepath = dirname(__FILE__);
if ($basepath == "")
$basepath = $_SERVER["DOCUMENT_ROOT"];
if ($basepath == "")
$basepath = $_SERVER["PWD"];
if ($basepath == "")
$basepath = dirname(__FILE__);
return($basepath);
}