From 7c09d5e3ef3cbb562ad6f899bed5fa6bb3600275 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Wed, 7 Feb 2007 03:30:56 +0000 Subject: [PATCH] * Fix regression from r19781 causing the little arrow next to section names in history comments to disappear: call to Skin::commentBlock short-circuits other stuff in Skin::revComment. Thanks to cesarb for spotting the issue. --- includes/PageHistory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/PageHistory.php b/includes/PageHistory.php index a2fbd56844..0575fcb544 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -224,7 +224,7 @@ class PageHistory { $s .= " " . wfMsgHtml( 'rev-deleted-comment' ) . ""; } else { - $s .= $this->mSkin->commentBlock( $rev->getComment() ); + $s .= $this->mSkin->revComment( $rev ); } if ($notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp)) { -- 2.20.1