Index: trunk/extensions/CodeReview/SpecialCode.php |
— | — | @@ -162,7 +162,7 @@ |
163 | 163 | $message = trim( $value ); |
164 | 164 | $lines = explode( "\n", $message, 2 ); |
165 | 165 | $first = $lines[0]; |
166 | | - $trimmed = $wgLang->truncate( $first, 60, '...' ); |
| 166 | + $trimmed = $wgLang->truncate( $first, 40, '...' ); |
167 | 167 | return $this->formatMessage( $trimmed ); |
168 | 168 | } |
169 | 169 | /* |
Index: trunk/extensions/CodeReview/CodeRevisionListView.php |
— | — | @@ -63,9 +63,9 @@ |
64 | 64 | 'cr_id' => wfMsg( 'code-field-id' ), |
65 | 65 | 'cr_status' => wfMsg( 'code-field-status' ), |
66 | 66 | 'COUNT(cc_rev_id)' => wfMsg( 'code-field-comments' ), |
| 67 | + 'cr_path' => wfMsg( 'code-field-path' ), |
67 | 68 | 'cr_message' => wfMsg( 'code-field-message' ), |
68 | 69 | 'cr_author' => wfMsg( 'code-field-author' ), |
69 | | - 'cr_path' => wfMsg( 'code-field-path' ), |
70 | 70 | 'cr_timestamp' => wfMsg( 'code-field-timestamp' ), |
71 | 71 | ); |
72 | 72 | } |