From a70c8659022eb5d62e69e700c2db48259e13f180 Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Thu, 21 Dec 2023 17:48:07 +0000 Subject: [PATCH] [REF][PHP8.2] Replace dynamic property with local var - mailing browse --- CRM/Mailing/Page/Browse.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Mailing/Page/Browse.php b/CRM/Mailing/Page/Browse.php index 6fd93bdfa0..8bc730b8fe 100644 --- a/CRM/Mailing/Page/Browse.php +++ b/CRM/Mailing/Page/Browse.php @@ -139,9 +139,9 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page { } $this->set('scheduled', $this->_scheduled); - $this->_createdId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE, 0); - if ($this->_createdId) { - $this->set('createdId', $this->_createdId); + $createdId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE, 0); + if ($createdId) { + $this->set('createdId', $createdId); } if ($this->_sms) { -- 2.25.1