From 373f1574bd3c218d42b84d1f692ef36056aec794 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 25 Aug 2025 12:58:57 -0400 Subject: [PATCH] Update function path for customAction to use the new path /custom and not /xcustom --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 53c87c2e..14d12b9f 100644 --- a/functions.php +++ b/functions.php @@ -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"; } }