From: Siebrand Mazeland Date: Sun, 19 Jul 2009 14:36:32 +0000 (+0000) Subject: Use $wgLang->pipeList() instead of separating with "/" X-Git-Tag: 1.31.0-rc.0~40841 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=5de96e9cf6d7b56ddaac43765649d62880b0beaa;p=lhc%2Fweb%2Fwiklou.git Use $wgLang->pipeList() instead of separating with "/" --- diff --git a/includes/specials/SpecialRevisiondelete.php b/includes/specials/SpecialRevisiondelete.php index cc4c8a4f76..cb2447d767 100644 --- a/includes/specials/SpecialRevisiondelete.php +++ b/includes/specials/SpecialRevisiondelete.php @@ -181,7 +181,7 @@ class SpecialRevisionDelete extends UnlistedSpecialPage { * Show some useful links in the subtitle */ protected function showConvenienceLinks() { - global $wgOut, $wgUser; + global $wgOut, $wgUser, $wgLang; # Give a link to the logs/hist for this page if( $this->targetObj ) { $links = array(); @@ -210,7 +210,7 @@ class SpecialRevisionDelete extends UnlistedSpecialPage { ); } # Logs themselves don't have histories or archived revisions - $wgOut->setSubtitle( '

'.implode($links,' / ').'

' ); + $wgOut->setSubtitle( '

' . $wgLang->pipeList( $links ) . '

' ); } }