Index: trunk/extensions/CodeReview/CodeReview.php |
— | — | @@ -124,7 +124,7 @@ |
125 | 125 | $wgCodeReviewImportBatchSize = 400; |
126 | 126 | |
127 | 127 | // Bump the version number every time you change a CodeReview .css/.js file |
128 | | -$wgCodeReviewStyleVersion = 6; |
| 128 | +$wgCodeReviewStyleVersion = 7; |
129 | 129 | |
130 | 130 | // The name of a repo which represents the code running on this wiki, used to highlight active revisions |
131 | 131 | $wgWikiSVN = ''; |
Index: trunk/extensions/CodeReview/codereview.css |
— | — | @@ -7,6 +7,9 @@ |
8 | 8 | overflow:auto; |
9 | 9 | } |
10 | 10 | |
| 11 | +.TablePager_col_comments { |
| 12 | + text-align: center; |
| 13 | +} |
11 | 14 | .TablePager_col_cr_message { |
12 | 15 | max-width: 20em; |
13 | 16 | } |
Index: trunk/extensions/CodeReview/ui/CodeRevisionListView.php |
— | — | @@ -332,7 +332,7 @@ |
333 | 333 | $special->setFragment( '#code-comments' ); |
334 | 334 | return $this->mView->mSkin->link( $special, htmlspecialchars( $value ) ); |
335 | 335 | } else { |
336 | | - return intval( $value ); |
| 336 | + return '-'; |
337 | 337 | } |
338 | 338 | case 'cr_path': |
339 | 339 | return Xml::openElement( 'div', array( 'title' => (string)$value ) ) . |