From: Aryeh Gregor Date: Wed, 7 Feb 2007 03:30:56 +0000 (+0000) Subject: * Fix regression from r19781 causing the little arrow next to section names in histor... X-Git-Tag: 1.31.0-rc.0~54111 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=7c09d5e3ef3cbb562ad6f899bed5fa6bb3600275;p=lhc%2Fweb%2Fwiklou.git * 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. --- 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)) {