X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fnoticelistitem.php;h=52dcbc1f6777507ae659d83c3cd3d8a3d191fbcd;hb=e02c10a58938718bc6345ee64bbb19914abbf472;hp=8c27ae4e84fd9d87db42501e0d40077a7fd1777e;hpb=54325e266f03be053b4efb1e788ef370b96f0cdc;p=quix0rs-gnu-social.git diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 8c27ae4e84..52dcbc1f67 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -343,13 +343,8 @@ class NoticeListItem extends Widget if (Event::handle('StartShowNoticeContent', array($this->notice, $this->out, $this->out->getScoped()))) { if ($this->maxchars > 0 && mb_strlen($this->notice->content) > $this->maxchars) { $this->out->text(mb_substr($this->notice->content, 0, $this->maxchars) . '[…]'); - } elseif ($this->notice->rendered) { - $this->out->raw($this->notice->rendered); } else { - // XXX: may be some uncooked notices in the DB, - // we cook them right now. This should probably disappear in future - // versions (>> 0.4.x) - $this->out->raw(common_render_content($this->notice->content, $this->notice)); + $this->out->raw($this->notice->getRendered()); } Event::handle('EndShowNoticeContent', array($this->notice, $this->out, $this->out->getScoped())); }