Merge "Display the full title in notifications about mention in summary"

This commit is contained in:
jenkins-bot 2019-01-07 22:10:51 +00:00 committed by Gerrit Code Review
commit 729111443e

View file

@ -13,7 +13,7 @@ class EchoMentionInSummaryPresentationModel extends EchoEventPresentationModel {
public function getHeaderMessage() {
$msg = $this->getMessageWithAgent( 'notification-header-mention-summary' );
$msg->params( $this->getViewingUserForGender() );
$msg->params( $this->getTruncatedTitleText( $this->event->getTitle() ) );
$msg->params( $this->getTruncatedTitleText( $this->event->getTitle(), true ) );
return $msg;
}