Use localised parentheses and $wgLang->pipeList() instead of hardcoded parentheses and pipe characters.

This commit is contained in:
Siebrand Mazeland 2009-07-19 14:47:03 +00:00
parent 5de96e9cf6
commit 2f82bccb39

View file

@ -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') ) {