From: Alexandre Emsenhuber Date: Mon, 30 Mar 2009 16:54:32 +0000 (+0000) Subject: * (bug 18259) Special:DeletedContributions now also uses MediaWiki:Sp-contributions... X-Git-Tag: 1.31.0-rc.0~42270 X-Git-Url: http://git.cyclocoop.org//%27http:/jquery.khurshid.com/ifixpng.php/%27?a=commitdiff_plain;h=62c1d6a8ec016689d8471dcd88e05cf474681b55;p=lhc%2Fweb%2Fwiklou.git * (bug 18259) Special:DeletedContributions now also uses MediaWiki:Sp-contributions-logs for the link to Special:Log --- diff --git a/CREDITS b/CREDITS index 4aef01af87..2b91ef877c 100644 --- a/CREDITS +++ b/CREDITS @@ -84,6 +84,7 @@ following names for their contribution to the product. * Nikolaos S. Karastathis * Olaf Lenz * Paul Copperman +* PieRRoMaN * RememberTheDot * René Kijewski * ST47 diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 7826f0046c..d369ac0c3e 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -311,6 +311,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Improved error handling for image moving * (bug 17974) On Special:SpecialPages, restricted special pages are now marked with tags, helps with text-based browsers +* (bug 18259) Special:DeletedContributions now also uses + MediaWiki:Sp-contributions-logs for the link to Special:Log == API changes in 1.15 == * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions diff --git a/includes/specials/SpecialDeletedContributions.php b/includes/specials/SpecialDeletedContributions.php index 67b05ca186..70f701d569 100644 --- a/includes/specials/SpecialDeletedContributions.php +++ b/includes/specials/SpecialDeletedContributions.php @@ -307,7 +307,7 @@ class DeletedContributionsPage extends SpecialPage { } # Other logs link $tools[] = $sk->makeKnownLinkObj( SpecialPage::getTitleFor( 'Log' ), - wfMsgHtml( 'log' ), 'user=' . $nt->getPartialUrl() ); + wfMsgHtml( 'sp-contributions-logs' ), 'user=' . $nt->getPartialUrl() ); # Link to undeleted contributions $tools[] = $sk->makeKnownLinkObj( SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ), wfMsgHtml( 'contributions' ) );