From 4f15b8ae355c4f44525aa38a719ca21da12b3b55 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 12 Sep 2009 17:46:51 +0000 Subject: [PATCH] bug 20470 Edits with user/IP suppression are now marked --- includes/specials/SpecialContributions.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index b1359f3ba5..beed2a73fd 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -658,6 +658,11 @@ class ContribsPager extends ReverseChronologicalPager { } $ret = "{$del}{$d} {$histlink} {$difftext} {$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}"; + + # Denote if username is redacted for this edit + if( $rev->getVisibility() & Revision::DELETED_USER ) { + $ret .= " " . wfMsgHtml('rev-deleted-user') . ""; + } # Tags, if any. list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'contributions' ); -- 2.20.1