From: Siebrand Mazeland Date: Sat, 25 Feb 2012 20:53:54 +0000 (+0000) Subject: Follow-up r112410: (bug 34702) Use localised parentheses for comment, too. X-Git-Tag: 1.31.0-rc.0~24511 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=50eabdff63112079cbaae337960963898fc7113f;p=lhc%2Fweb%2Fwiklou.git Follow-up r112410: (bug 34702) Use localised parentheses for comment, too. --- 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"; } }