From d1424440798b104bda61706930a57db7cb017a96 Mon Sep 17 00:00:00 2001 From: pmolina Date: Sat, 2 Jun 2012 12:02:57 -0300 Subject: [PATCH] (bug 37184) Removed hard coded parentheses in RevisionList.php Change-Id: I1d391e7234b48ca870fffbdb48bd2ca03285a050 --- includes/RevisionList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/RevisionList.php b/includes/RevisionList.php index 488ef52f0f..44c7912363 100644 --- a/includes/RevisionList.php +++ b/includes/RevisionList.php @@ -371,13 +371,13 @@ class RevisionItem extends RevisionItemBase { } public function getHTML() { - $difflink = $this->getDiffLink(); + $difflink = wfMessage( 'parentheses' )->rawParams( $this->getDiffLink() ); $revlink = $this->getRevisionLink(); $userlink = Linker::revUserLink( $this->revision ); $comment = Linker::revComment( $this->revision ); if ( $this->isDeleted() ) { $revlink = "$revlink"; } - return "
  • ($difflink) $revlink $userlink $comment
  • "; + return "
  • $difflink $revlink $userlink $comment
  • "; } } -- 2.20.1