From 4c107de6cb1fd39ff6ddf191223d36100d66a04e Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Wed, 15 Mar 2023 22:41:37 +0000 Subject: [PATCH] [REF][PHP8.2] Declare property in CRM_Contact_Form_DedupeFind --- CRM/Contact/Form/DedupeFind.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CRM/Contact/Form/DedupeFind.php b/CRM/Contact/Form/DedupeFind.php index 04a5351161..3e567a3d5a 100644 --- a/CRM/Contact/Form/DedupeFind.php +++ b/CRM/Contact/Form/DedupeFind.php @@ -21,11 +21,17 @@ class CRM_Contact_Form_DedupeFind extends CRM_Admin_Form { /** - * Indicate if this form should warn users of unsaved changes + * Indicate if this form should warn users of unsaved changes * @var bool */ protected $unsavedChangesWarn = FALSE; + /** + * Dedupe rule group ID + * @var int + */ + protected $rgid; + /** * Pre processing. */ -- 2.25.1