From 48044bd155e5b130e6a0c9d922e0882d5a9498c4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 9 Mar 2008 02:38:08 +0000 Subject: [PATCH] Don't show deleted comments --- includes/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 6bed7905b7..59bd77c1d4 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -152,7 +152,7 @@ class ContribsPager extends ReverseChronologicalPager { } $histlink='('.$sk->makeKnownLinkObj( $page, $this->messages['hist'], 'action=history' ) . ')'; - $comment = $wgContLang->getDirMark() . $sk->revComment( $rev ); + $comment = $wgContLang->getDirMark() . $sk->revComment( $rev, false, true ); $d = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->rev_timestamp ), true ); if( $this->target == 'newbies' ) { -- 2.20.1