Index: trunk/extensions/ArticleFeedback/SpecialArticleFeedback.php |
— | — | @@ -30,7 +30,7 @@ |
31 | 31 | $lows = $this->getDailyLows( $highs_lows ); |
32 | 32 | |
33 | 33 | // provide some messaging above high/low tables |
34 | | - $wgOut->addWikiText( wfMsg( 'articleFeedback-copy-above-highlow-tables' )); |
| 34 | + $wgOut->addWikiMsg( 'articleFeedback-copy-above-highlow-tables' ); |
35 | 35 | |
36 | 36 | //render daily highs table |
37 | 37 | $this->renderDailyHighsAndLows( $highs, wfMsg( 'articleFeedback-table-caption-dailyhighs', $wgLang->date( time() ))); |
— | — | @@ -39,7 +39,7 @@ |
40 | 40 | $this->renderDailyHighsAndLows( $lows, wfMsg( 'articleFeedback-table-caption-dailylows', $wgLang->date( time() ))); |
41 | 41 | |
42 | 42 | // provide some messaging below high/low tables |
43 | | - $wgOut->addWikiText( wfMsg( 'articleFeedback-copy-below-highlow-tables' )); |
| 43 | + $wgOut->addWikiMsg( 'articleFeedback-copy-below-highlow-tables' ); |
44 | 44 | |
45 | 45 | /* |
46 | 46 | This functionality does not exist yet. |