diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index d1755c183..e3691702d 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -375,8 +375,7 @@ class Display extends \Zotlabs\Web\Controller { } $o .= ''; - if ($items[0]['title']) - \App::$page['title'] = $items[0]['title'] . " - " . \App::$page['title']; + \App::$page['title'] = (($items[0]['title']) ? $items[0]['title'] . " - " . \App::$page['title'] : \App::$page['title']); $o .= conversation($items, 'display', $update, 'client'); }