From cd48c93db358514d75a5ea689f8b5ebc8112a304 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Sat, 15 Jul 2023 12:11:54 +1000 Subject: [PATCH] [REF][PHP8.2] Ref fix deprecation in PHP8.2 about dynamic property _ssID --- CRM/Activity/Form/Search.php | 7 ------- CRM/Core/Form/Search.php | 7 +++++++ CRM/Event/Form/Search.php | 7 ------- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/CRM/Activity/Form/Search.php b/CRM/Activity/Form/Search.php index cbefbe3853..73a85c70bb 100644 --- a/CRM/Activity/Form/Search.php +++ b/CRM/Activity/Form/Search.php @@ -52,13 +52,6 @@ class CRM_Activity_Form_Search extends CRM_Core_Form_Search { */ protected $_prefix = 'activity_'; - /** - * The saved search ID retrieved from the GET vars. - * - * @var int - */ - protected $_ssID; - /** * @return string */ diff --git a/CRM/Core/Form/Search.php b/CRM/Core/Form/Search.php index 22e89167de..b071a4c45f 100644 --- a/CRM/Core/Form/Search.php +++ b/CRM/Core/Form/Search.php @@ -89,6 +89,13 @@ class CRM_Core_Form_Search extends CRM_Core_Form { protected $_reset; + /** + * Saved Search ID retrieved from the GET vars. + * + * @var int + */ + protected $_ssID; + /** * @return array */ diff --git a/CRM/Event/Form/Search.php b/CRM/Event/Form/Search.php index 8407f83b91..9d1f78176c 100644 --- a/CRM/Event/Form/Search.php +++ b/CRM/Event/Form/Search.php @@ -47,13 +47,6 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search { */ protected $_prefix = "event_"; - /** - * The saved search ID retrieved from the GET vars. - * - * @var int - */ - protected $_ssID; - /** * Metadata of all fields to include on the form. * -- 2.25.1