Fix regression in r52174 where parameter was not passed to MediaWiki:sp-contributions...
authorAndrew Garrett <werdna@users.mediawiki.org>
Thu, 17 Sep 2009 00:32:19 +0000 (00:32 +0000)
committerAndrew Garrett <werdna@users.mediawiki.org>
Thu, 17 Sep 2009 00:32:19 +0000 (00:32 +0000)
includes/specials/SpecialContributions.php

index 1d6a591..21b7e0b 100644 (file)
@@ -125,7 +125,8 @@ class SpecialContributions extends SpecialPage {
                        $text = wfMsgNoTrans( $message, $target );
                        if( !wfEmptyMsg( $message, $text ) && $text != '-' ) {
                                $wgOut->wrapWikiMsg(
-                                       "<div class='mw-contributions-footer'>\n$1\n</div>", $message );
+                                       "<div class='mw-contributions-footer'>\n$1\n</div>",
+                                       array( $message, $target ) );
                        }
                }
        }