From: Antoine Musso Date: Tue, 16 Mar 2004 13:08:35 +0000 (+0000) Subject: fix source forge bug 854204 X-Git-Tag: 1.3.0beta1~782 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=9215d5310b1aff975fadc6a8b97510d70ff03dbd;p=lhc%2Fweb%2Fwiklou.git fix source forge bug 854204 Skin cologne blue will show the donation link at the bottom of left bar in "special page" if $wgSiteSupportPage is set. --- diff --git a/includes/SkinCologneBlue.php b/includes/SkinCologneBlue.php index 6343dd9697..46dbdebdbd 100644 --- a/includes/SkinCologneBlue.php +++ b/includes/SkinCologneBlue.php @@ -232,7 +232,12 @@ class SkinCologneBlue extends Skin { if ( 0 != $wgUser->getID() && !$wgDisableUploads ) { $s .= $sep . $this->specialLink( "upload" ); } - + global $wgSiteSupportPage; + if( $wgSiteSupportPage) { + $s .= $sep."" + .wfMsg( "sitesupport" ).""; + } + $s .= $sep . $this->makeKnownLink( $wgLang->specialPage( "Specialpages" ), wfMsg("moredotdotdot") ); $s .= $sep . "\n\n";