diff --git a/system/functions.php b/system/functions.php index 11926f51..89f45676 100644 --- a/system/functions.php +++ b/system/functions.php @@ -1679,4 +1679,7 @@ function getAccountIdentityColumn(): string require_once SYSTEM . 'compat/base.php'; // custom functions -require SYSTEM . 'functions_custom.php'; +$customFunctions = SYSTEM . 'functions_custom.php'; +if (is_file($customFunctions)) { + require $customFunctions; +}