Merge pull request #15010 from bafbes/abb120147
fix:allow const files loading from modules inside custom folders
This commit is contained in:
commit
c079076488
@ -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.
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user