From 44ceb1da2c030ae9d02885259025285c5f0aaf19 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 20 Aug 2003 06:24:06 +0000 Subject: [PATCH] Fix language links on special/preview pages in Nostalgia --- includes/SkinNostalgia.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SkinNostalgia.php b/includes/SkinNostalgia.php index d2e97cfc56..e31fcb0edb 100644 --- a/includes/SkinNostalgia.php +++ b/includes/SkinNostalgia.php @@ -24,9 +24,9 @@ class SkinNostalgia extends Skin { $s .= $this->topLinks() . "\n
"; $s .= $this->pageTitleLinks(); - if ( $wgOut->isArticle() ) { - $s .= "
" . $this->otherLanguages(); - } + $ol = $this->otherLanguages(); + if($ol) $s .= "
" . $ol; + $s .= "

\n\n"; $s .= "\n
"; -- 2.20.1