From 9215d5310b1aff975fadc6a8b97510d70ff03dbd Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 16 Mar 2004 13:08:35 +0000 Subject: [PATCH] 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. --- includes/SkinCologneBlue.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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"; -- 2.20.1