Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -658,6 +658,11 @@ |
659 | 659 | } |
660 | 660 | |
661 | 661 | $ret = "{$del}{$d} {$histlink} {$difftext} {$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}"; |
| 662 | + |
| 663 | + # Denote if username is redacted for this edit |
| 664 | + if( $rev->getVisibility() & Revision::DELETED_USER ) { |
| 665 | + $ret .= " <strong>" . wfMsgHtml('rev-deleted-user') . "</strong>"; |
| 666 | + } |
662 | 667 | |
663 | 668 | # Tags, if any. |
664 | 669 | list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'contributions' ); |