From 62c1d6a8ec016689d8471dcd88e05cf474681b55 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 30 Mar 2009 16:54:32 +0000 Subject: [PATCH] * (bug 18259) Special:DeletedContributions now also uses MediaWiki:Sp-contributions-logs for the link to Special:Log --- CREDITS | 1 + RELEASE-NOTES | 2 ++ includes/specials/SpecialDeletedContributions.php | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) 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' ) ); -- 2.20.1