Index: trunk/extensions/CodeReview/ui/CodeRepoStatsView.php |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | . '<tr><th>' . wfMsgHtml( 'code-field-author' ) . '</th><th>' |
62 | 62 | . wfMsgHtml( 'code-stats-count' ) . '</th></tr>' ); |
63 | 63 | $title = SpecialPage::getTitleFor( 'Code', $repoName . "/status/{$status}" ); |
64 | | - foreach ( array as $user => $count ) { |
| 64 | + foreach ( $array as $user => $count ) { |
65 | 65 | $count = htmlspecialchars( $wgLang->formatNum( $count ) ); |
66 | 66 | $link = $this->skin->link( |
67 | 67 | $title, |