From: Evan Prodromou Date: Wed, 4 Mar 2009 20:07:53 +0000 (-0800) Subject: check for profile record X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=00c358956fcece251b8d78f2c6a41098571472c7;p=quix0rs-gnu-social.git check for profile record --- diff --git a/lib/noticesection.php b/lib/noticesection.php index b31f187445..94c2738efd 100644 --- a/lib/noticesection.php +++ b/lib/noticesection.php @@ -73,6 +73,11 @@ class NoticeSection extends Section function showNotice($notice) { $profile = $notice->getProfile(); + if (empty($profile)) { + common_log(LOG_WARNING, sprintf("Notice %d has no profile", + $notice->id)); + return; + } $this->out->elementStart('li', 'hentry notice'); $this->out->elementStart('div', 'entry-title'); $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);