From ff77a528dc2bef7968f86fc7cbed7b448c98d367 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Sat, 4 Nov 2023 07:33:52 +1100 Subject: [PATCH] [REF][PHP8.2] Fix Case_Form_TaskTest test fails on php8.2 --- CRM/Case/Form/ActivityToCase.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CRM/Case/Form/ActivityToCase.php b/CRM/Case/Form/ActivityToCase.php index fddff50fe3..ac182876bb 100644 --- a/CRM/Case/Form/ActivityToCase.php +++ b/CRM/Case/Form/ActivityToCase.php @@ -20,6 +20,19 @@ */ class CRM_Case_Form_ActivityToCase extends CRM_Core_Form { + /** + * Case Activity being copied or moved + * @var int + */ + public $_activityId; + + + /** + * Current CiviCase ID associated with the activity + * @var int + */ + public $_currentCaseId; + /** * Build all the data structures needed to build the form. * -- 2.25.1