From: Brion Vibber Date: Wed, 20 Aug 2003 06:24:06 +0000 (+0000) Subject: Fix language links on special/preview pages in Nostalgia X-Git-Tag: 1.1.0~326 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=44ceb1da2c030ae9d02885259025285c5f0aaf19;p=lhc%2Fweb%2Fwiklou.git Fix language links on special/preview pages in Nostalgia --- 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
";