From: pmolina Date: Sat, 2 Jun 2012 15:02:57 +0000 (-0300) Subject: (bug 37184) Removed hard coded parentheses in RevisionList.php X-Git-Tag: 1.31.0-rc.0~23445 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/supprimer.php?a=commitdiff_plain;h=d1424440798b104bda61706930a57db7cb017a96;p=lhc%2Fweb%2Fwiklou.git (bug 37184) Removed hard coded parentheses in RevisionList.php Change-Id: I1d391e7234b48ca870fffbdb48bd2ca03285a050 --- 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
  • "; } }