Index: trunk/extensions/CodeReview/ui/CodeStatusListView.php |
— | — | @@ -17,14 +17,14 @@ |
18 | 18 | foreach ( $states as $state ) { |
19 | 19 | $link = $this->skin->link( |
20 | 20 | SpecialPage::getTitleFor( 'Code', $name . "/status/$state" ), |
21 | | - wfMsg( "code-status-".$state ) |
| 21 | + wfMsgHtml( "code-status-".$state ) |
22 | 22 | ); |
23 | 23 | $table_rows .= "<tr><td class=\"mw-codereview-status-$state\">$link</td>" |
24 | | - . "<td>" . wfMsg( "code-status-desc-" . $state ) . "</td></tr>\n" ; |
| 24 | + . "<td>" . wfMsgHtml( "code-status-desc-" . $state ) . "</td></tr>\n" ; |
25 | 25 | } |
26 | 26 | $wgOut->addHTML( '<table class="TablePager">' |
27 | | - . '<tr><th>' . wfMsg( 'code-field-status' ) . '</th>' |
28 | | - . '<th>' . wfMsg( 'code-field-status-description' ) . '</th></tr>' |
| 27 | + . '<tr><th>' . wfMsgHtml( 'code-field-status' ) . '</th>' |
| 28 | + . '<th>' . wfMsgHtml( 'code-field-status-description' ) . '</th></tr>' |
29 | 29 | . $table_rows |
30 | 30 | . '</table>' |
31 | 31 | ); |