From 50eabdff63112079cbaae337960963898fc7113f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 25 Feb 2012 20:53:54 +0000 Subject: [PATCH] Follow-up r112410: (bug 34702) Use localised parentheses for comment, too. --- includes/Linker.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/Linker.php b/includes/Linker.php index 52e00ba643..9e4bfccdbc 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1399,7 +1399,8 @@ class Linker { return ''; } else { $formatted = self::formatComment( $comment, $title, $local ); - return " ($formatted)"; + $formatted = wfMessage( 'parentheses' )->rawParams( $formatted ); + return " $formatted"; } } -- 2.20.1