fix issue #1459 Notification of Comment like indicates Post instead of Comment

This commit is contained in:
helnokaly 2016-02-24 14:55:30 +02:00
parent ac2804ba72
commit 8e650330f8

View File

@ -4,6 +4,6 @@ use yii\helpers\Html;
echo Yii::t('LikeModule.views_notifications_newLike', "%displayName% likes %contentTitle%.", array(
'%displayName%' => '<strong>' . Html::encode($originator->displayName) . '</strong>',
'%contentTitle%' => $this->context->getContentInfo($source->content->getPolymorphicRelation())
'%contentTitle%' => $this->context->getContentInfo($source->getSource())
));
?>