Index: trunk/extensions/CodeReview/ui/CodeRepoStatsView.php |
— | — | @@ -49,8 +49,10 @@ |
50 | 50 | foreach ( $stats->fixmes as $user => $count ) { |
51 | 51 | $count = htmlspecialchars( $wgLang->formatNum( $count ) ); |
52 | 52 | $link = $this->skin->link( |
53 | | - SpecialPage::getTitleFor( 'Code', $repoName . '/author/' . $user ), |
54 | | - htmlspecialchars( $user ) |
| 53 | + SpecialPage::getTitleFor( 'Code', $repoName . '/status/fixme' ), |
| 54 | + htmlspecialchars( $user ), |
| 55 | + array(), |
| 56 | + array( 'author' => $user ) |
55 | 57 | ); |
56 | 58 | $wgOut->addHTML( "<tr><td>$link</td>" |
57 | 59 | . "<td>$count</td></tr>" ); |