From 13addaf9011ea85217b6fde86841d6e9f499f08b Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 22 Mar 2022 07:07:33 +0000 Subject: [PATCH] Always provide the title variable --- src/Content/Conversation.php | 2 ++ src/Object/Post.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index ac37a3a8ba..0c3a6c988d 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -635,6 +635,8 @@ class Conversation $title = $item['title']; } elseif (!empty($item['content-warning']) && $this->pConfig->get(local_user(), 'system', 'disable_cw', false)) { $title = ucfirst($item['content-warning']); + } else { + $title = ''; } $tmp_item = [ diff --git a/src/Object/Post.php b/src/Object/Post.php index b5c058dfd9..4e0d8d2389 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -393,6 +393,8 @@ class Post $title = $item['title']; } elseif (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) { $title = ucfirst($item['content-warning']); + } else { + $title = ''; } if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {