From: Siebrand Mazeland Date: Sun, 19 Jul 2009 14:47:03 +0000 (+0000) Subject: Use localised parentheses and $wgLang->pipeList() instead of hardcoded parentheses... X-Git-Tag: 1.31.0-rc.0~40840 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=2f82bccb39c5e48de0207323b3e6e0456617ae45;p=lhc%2Fweb%2Fwiklou.git Use localised parentheses and $wgLang->pipeList() instead of hardcoded parentheses and pipe characters. --- diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index 174be963e9..eb43cbc669 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -373,8 +373,9 @@ class LogEventsList { ), array( 'known', 'noclasses' ) ); + // Pipe links - $revert = '(' . implode(' | ',$revert) . ')'; + $revert = wfMsg( 'parentheses', $wgLang->pipeList( $revert ) ); } // Hidden log items, give review link } else if( self::typeAction($row,array('delete','suppress'),'event','deleterevision') ) {