summaryrefslogtreecommitdiff
path: root/skins/Standard.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2009-06-10 13:00:47 +0200
committerPierre Schmitz <pierre@archlinux.de>2009-06-10 13:00:47 +0200
commit72e90545454c0e014318fa3c81658e035aac58c1 (patch)
tree9212e3f46868989c4d57ae9a5c8a1a80e4dc0702 /skins/Standard.php
parent565a0ccc371ec1a2a0e9b39487cbac18e6f60e25 (diff)
applying patch to version 1.15.0
Diffstat (limited to 'skins/Standard.php')
-rw-r--r--skins/Standard.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/skins/Standard.php b/skins/Standard.php
index 1f3cab95..694bc5e3 100644
--- a/skins/Standard.php
+++ b/skins/Standard.php
@@ -82,7 +82,7 @@ class SkinStandard extends Skin {
}
function doAfterContent() {
- global $wgContLang;
+ global $wgContLang, $wgLang;
$fname = 'SkinStandard::doAfterContent';
wfProfileIn( $fname );
wfProfileIn( $fname.'-1' );
@@ -108,10 +108,11 @@ class SkinStandard extends Skin {
$s .= "<td class='bottom' align='$l' valign='top'>";
$s .= $this->bottomLinks();
- $s .= "\n<br />" . $this->mainPageLink()
- . ' | ' . $this->aboutLink()
- . ' | ' . $this->specialLink( 'recentchanges' )
- . ' | ' . $this->searchForm()
+ $s .= "\n<br />" . $wgLang->pipeList( array(
+ $this->mainPageLink(),
+ $this->aboutLink(),
+ $this->specialLink( 'recentchanges' ),
+ $this->searchForm() ) )
. '<br /><span id="pagestats">' . $this->pageStats() . '</span>';
$s .= "</td>";