From e6b27769ad6b7fd65d14edfa23d1dac08dd3d940 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 14 Jul 2023 09:53:11 +1200 Subject: [PATCH] Undefined property fix This is declared on other forms that use CRM_Form_Payment so this aligns --- CRM/Member/Form.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CRM/Member/Form.php b/CRM/Member/Form.php index b50799354c..4fa377416b 100644 --- a/CRM/Member/Form.php +++ b/CRM/Member/Form.php @@ -77,6 +77,14 @@ class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment { */ protected $formContext = 'membership'; + /** + * Array of the payment fields to be displayed in the payment fieldset (pane) in billingBlock.tpl + * this contains all the information to describe these fields from quickform. See CRM_Core_Form_Payment getPaymentFormFieldsMetadata + * + * @var array + */ + public $_paymentFields = []; + /** * @return string */ -- 2.25.1