From c93dfd61fb97be07d6bde2568ff250e880cbd082 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Fri, 28 Oct 2011 08:04:58 +0000 Subject: [PATCH] Followup to r101120, replaced hardcoded parentheses with the 'parentheses' message. --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index f25e1da605..0b48c103da 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -218,7 +218,7 @@ class ChangesList extends ContextSource { return Html::element( $tag, array( 'dir' => 'ltr', 'class' => $formattedSizeClass ), - "($formattedSize)" ) . $wgLang->getDirMark(); + wfMessage( 'parentheses', $formattedSize )->plain() ) . $wgLang->getDirMark(); } /** -- 2.20.1