From: Matthias Schmidt Date: Sat, 21 May 2016 17:07:24 +0000 (+0200) Subject: Fix return value of FeedConversation::__toString() X-Git-Tag: 2.1.6~4 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6d219fd2f1edfd59a624916a994163c9feef0675;p=GitHub%2FWoltLab%2Fcom.woltlab.wcf.conversation.git Fix return value of FeedConversation::__toString() --- diff --git a/files/lib/data/conversation/FeedConversation.class.php b/files/lib/data/conversation/FeedConversation.class.php index b7e434a..31d94cb 100644 --- a/files/lib/data/conversation/FeedConversation.class.php +++ b/files/lib/data/conversation/FeedConversation.class.php @@ -84,7 +84,7 @@ class FeedConversation extends DatabaseObjectDecorator implements IFeedEntry { * @see \wcf\data\IMessage::__toString() */ public function __toString() { - return $this->getDecoratedObject()->__toString(); + return $this->getFormattedMessage(); } /**