]> git.mxchange.org Git - friendica.git/commitdiff
Fixes "E_WARNING: Undefined variable $subject"
authorMichael <heluecht@pirati.ca>
Mon, 26 Dec 2022 12:14:45 +0000 (12:14 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 26 Dec 2022 12:14:45 +0000 (12:14 +0000)
src/Navigation/Notifications/Repository/Notify.php

index 278451936d701a3839b325cd21e47d920affdaf0..60e801d039002627bd2b6922c87ee840e37e4b92 100644 (file)
@@ -783,6 +783,8 @@ class Notify extends BaseRepository
                        $subject        = $l10n->t('%s %s shared a new post', $subjectPrefix, $contact['name']);
                } else {
                        $params['type'] = Model\Notification\Type::COMMENT;
+                       $subject        = $l10n->t('%1$s Comment to conversation #%2$d by %3$s', $subjectPrefix, $item['parent'], $contact['name']);
+
                        if ($params['verb'] = Activity::LIKE) {
                                switch ($Notification->type) {
                                        case Model\Post\UserNotification::TYPE_DIRECT_COMMENT:
@@ -792,8 +794,6 @@ class Notify extends BaseRepository
                                                $subject = $l10n->t('%1$s %2$s liked your comment on #%3$d', $subjectPrefix, $contact['name'], $item['parent']);
                                                break;
                                }
-                       } else {
-                               $subject = $l10n->t('%1$s Comment to conversation #%2$d by %3$s', $subjectPrefix, $item['parent'], $contact['name']);
                        }
                }