From 39ddbaac493ed7adb14111aebed067fe4741f68b Mon Sep 17 00:00:00 2001 From: Frank Cools Date: Wed, 8 Oct 2025 01:17:55 +0200 Subject: [PATCH] Add debugging to action handling - Add debug logging to track received actions - Debug action processing flow - Identify why reset_template action is not being processed --- admin/setup_mvp.php | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/setup_mvp.php b/admin/setup_mvp.php index 2d237e3..bfbe203 100644 --- a/admin/setup_mvp.php +++ b/admin/setup_mvp.php @@ -36,6 +36,7 @@ $form = new Form($db); // Handle form submission $action = GETPOST('action', 'alpha'); +error_log("DeclarationTVA: Action received: " . $action); if ($action == 'update_mappings') { $ca3_definitions = $config->getCA3LineDefinitions(); $updated_count = 0;