From: Hypolite Petovan Date: Thu, 19 Jan 2023 14:03:45 +0000 (-0500) Subject: Replace deprecated uses of ${var} in strings X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c79cec265274d458d27e16d039078738f639b48e;p=friendica.git Replace deprecated uses of ${var} in strings - Address part of https://github.com/friendica/friendica/issues/12011#issuecomment-1383147421 --- diff --git a/src/Navigation/Notifications/Repository/Notify.php b/src/Navigation/Notifications/Repository/Notify.php index 87671f7e6a..2d15dd85c1 100644 --- a/src/Navigation/Notifications/Repository/Notify.php +++ b/src/Navigation/Notifications/Repository/Notify.php @@ -614,7 +614,7 @@ class Notify extends BaseRepository $emailBuilder->setHeader('Message-ID', $message_id); $log_msg = "No previous notification found for this parent:\n" . - " parent: ${params['parent']}\n" . " uid : ${params['uid']}\n"; + " parent: {$params['parent']}\n" . " uid : {$params['uid']}\n"; $this->logger->info($log_msg); } else { // If not, just "follow" the thread.