Ensure DOCUMENT_ROOT and PROJECT_PATH exist

This commit is contained in:
FusionPBX 2022-10-12 10:24:30 -06:00 committed by GitHub
parent 1dee0683ef
commit 2bcf6743a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -2161,6 +2161,13 @@ function number_pad($number,$n) {
}
}
//set the include path
$conf = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE);
set_include_path(parse_ini_file($conf[0])['document.root']);
//includes files
require_once "resources/require.php";
//include additional functions
$functions = glob("{".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/functions/*.php,".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/resources/functions/*.php}", GLOB_BRACE);
foreach($functions as $function) {