Index: trunk/extensions/CodeReview/ui/CodeRepoStatsView.php |
— | — | @@ -52,7 +52,7 @@ |
53 | 53 | $wgOut->wrapWikiMsg( "<h3 id=\"stats-fixme-path\">$1</h3>", 'code-stats-fixme-breakdown-path' ); |
54 | 54 | |
55 | 55 | foreach ( $stats->fixmesPerPath as $path => $fixmes ) { |
56 | | - $wgOut->wrapWikiMsg( "<h4 id=\"stats-fixme-path\">$1</h4>", 'code-stats-fixme-path', $path ); |
| 56 | + $wgOut->wrapWikiMsg( "<h4 id=\"stats-fixme-path\">$1</h4>", array( 'code-stats-fixme-path', $path ) ); |
57 | 57 | $this->writeAuthorTable( 'fixme', $fixmes, array( 'path' => $path ) ); |
58 | 58 | } |
59 | 59 | } |
Index: trunk/extensions/CodeReview/CodeReview.php |
— | — | @@ -243,7 +243,7 @@ |
244 | 244 | /** |
245 | 245 | * Key is repository name. Value is an array of key value pairs of the paths to get fixme list for |
246 | 246 | * |
247 | | - * $wgCodeReviewFixmePerPath = array( 'RepoName' => array( '%^/path/to/use%', '%^/another/path/to/use%' ) ) |
| 247 | + * $wgCodeReviewFixmePerPath = array( 'RepoName' => array( '/path/to/use', '/another/path/to/use' ) ) |
248 | 248 | */ |
249 | 249 | $wgCodeReviewFixmePerPath = array(); |
250 | 250 | |