From 2f82bccb39c5e48de0207323b3e6e0456617ae45 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jul 2009 14:47:03 +0000 Subject: [PATCH] Use localised parentheses and $wgLang->pipeList() instead of hardcoded parentheses and pipe characters. --- includes/LogEventsList.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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') ) { -- 2.20.1