From 03cda809006379ee1e5abaac6386a583a0cf5c91 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Thu, 17 Sep 2009 00:32:19 +0000 Subject: [PATCH] Fix regression in r52174 where parameter was not passed to MediaWiki:sp-contributions-footer --- includes/specials/SpecialContributions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 1d6a591eec..21b7e0b139 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -125,7 +125,8 @@ class SpecialContributions extends SpecialPage { $text = wfMsgNoTrans( $message, $target ); if( !wfEmptyMsg( $message, $text ) && $text != '-' ) { $wgOut->wrapWikiMsg( - "", $message ); + "", + array( $message, $target ) ); } } } -- 2.20.1