Update function path for customAction to use the new path /custom and not /xcustom

This commit is contained in:
johnnyq 2025-08-25 12:58:57 -04:00
parent 6f5ffef22f
commit 373f1574bd
1 changed files with 2 additions and 2 deletions

View File

@ -1482,8 +1482,8 @@ function enforceAdminPermission() {
function customAction($trigger, $entity) {
chdir(dirname(__FILE__));
if (file_exists(__DIR__ . "/xcustom/xcustom_action_handler.php")) {
include_once __DIR__ . "/xcustom/xcustom_action_handler.php";
if (file_exists(__DIR__ . "/custom/custom_action_handler.php")) {
include_once __DIR__ . "/custom/custom_action_handler.php";
}
}