Option d’Activation du fichier global de configuration.

This commit is contained in:
bahfir abbes 2020-10-08 00:23:59 +01:00
parent c539c6d00d
commit 4ee6cedbe6

View File

@ -235,7 +235,7 @@ class Conf
$filesList = explode(":", $this->global->LOCAL_CONSTS_FILES);
foreach ($filesList as $file) {
$file = dol_sanitizeFileName($file);
include_once DOL_DOCUMENT_ROOT."/".$file."/".$file."_consts.php"; // This file can run code like setting $this->global->XXX vars.
dol_include_once($file."/".$file."_consts.php"); // This file can run code like setting $this->global->XXX vars.
}
}