Use localised parentheses and $wgLang->pipeList() instead of hardcoded parentheses and pipe characters.
This commit is contained in:
parent
5de96e9cf6
commit
2f82bccb39
1 changed files with 2 additions and 1 deletions
|
|
@ -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') ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue