From 5007b543b061b55ed533586bdb0074344cbf1bb3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 6 Nov 2008 22:20:29 +0000 Subject: [PATCH] Consistent casing for addHTML() --- ContributionScores_body.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ContributionScores_body.php b/ContributionScores_body.php index f6b9ec4..06d3a82 100644 --- a/ContributionScores_body.php +++ b/ContributionScores_body.php @@ -189,7 +189,7 @@ class ContributionScores extends IncludableSpecialPage } $reportTitle .= " " . wfMsg( 'contributionscores-top', $limit ); $title = Xml::element( 'h4', array( 'class' => 'contributionscores-title' ), $reportTitle ) . "\n"; - $wgOut->addHtml( $this->genContributionScoreTable( $days, $limit, $title, $options ) ); + $wgOut->addHTML( $this->genContributionScoreTable( $days, $limit, $title, $options ) ); } function showPage() { @@ -212,8 +212,8 @@ class ContributionScores extends IncludableSpecialPage } $reportTitle .= " " . wfMsg('contributionscores-top', $scoreReport[1] ); $title = Xml::element( 'h2', array( 'class' => 'contributionscores-title' ), $reportTitle ) . "\n"; - $wgOut->addHtml( $title ); - $wgOut->addHtml( $this->genContributionScoreTable( $scoreReport[0], $scoreReport[1] ) ); + $wgOut->addHTML( $title ); + $wgOut->addHTML( $this->genContributionScoreTable( $scoreReport[0], $scoreReport[1] ) ); } } }