From 3277adf0395d8a4e6596feecfeebd68261340e78 Mon Sep 17 00:00:00 2001 From: Arlen Johnson Date: Wed, 17 Dec 2025 12:33:51 -0500 Subject: [PATCH] Ensure $fields[] is initialized (empty) in start.php (CFM-218) --- app/templates/EnrollmentFlows/start.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/templates/EnrollmentFlows/start.php b/app/templates/EnrollmentFlows/start.php index 3c7066083..b3ead8908 100644 --- a/app/templates/EnrollmentFlows/start.php +++ b/app/templates/EnrollmentFlows/start.php @@ -28,6 +28,7 @@ declare(strict_types = 1); // Enrollment Flow Start has its own file of fields +$fields = []; $modelsName = $this->getName(); $templatePath = $vv_template_path ?? ROOT . DS . "templates" . DS . $modelsName; include($templatePath . DS . 'start.inc');