From 83c112e24babce57876abfee98f19cf9eee424e4 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sat, 26 Dec 2015 16:36:03 +0100 Subject: [PATCH] Handle lack of parent nicely --- lib/noticelistitem.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index d7cc57188d..8c27ae4e84 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -154,7 +154,11 @@ class NoticeListItem extends Widget if (!empty($this->notice->reply_to) || count($this->getProfileAddressees()) > 0) { $this->elementStart('div', array('class' => 'parents')); - if (!empty($this->notice->reply_to)) { $this->showParent(); } + try { + $this->showParent(); + } catch (NoParentNoticeException $e) { + // no parent notice + } if ($this->addressees) { $this->showAddressees(); } $this->elementEnd('div'); } -- 2.39.2