From d2156f4f6bb98d5018eabeb2e0267e6b3a7129fe Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Sun, 12 Jan 2020 12:35:03 +0000 Subject: [PATCH] Mark billing fields as required if they are required! --- CRM/Core/Payment/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment/Form.php b/CRM/Core/Payment/Form.php index 1c7263812c..3779297a08 100644 --- a/CRM/Core/Payment/Form.php +++ b/CRM/Core/Payment/Form.php @@ -109,7 +109,7 @@ class CRM_Core_Payment_Form { $field['name'], $field['title'], $field['attributes'], - FALSE, + $field['is_required'], $field['extra'] ); } -- 2.25.1