Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -54,7 +54,7 @@ |
55 | 55 | 'code-field-status' => 'Status', |
56 | 56 | 'code-field-status-description' => 'Status description', |
57 | 57 | 'code-field-timestamp' => 'Date', |
58 | | - 'code-field-comments' => 'Notes', |
| 58 | + 'code-field-comments' => 'Comments', |
59 | 59 | 'code-field-path' => 'Path', |
60 | 60 | 'code-field-text' => 'Note', |
61 | 61 | 'code-field-select' => 'Select', |
Index: trunk/extensions/CodeReview/ui/CodeRevisionListView.php |
— | — | @@ -79,7 +79,7 @@ |
80 | 80 | $dbr = wfGetDB( DB_SLAVE ); |
81 | 81 | $revObjects = array(); |
82 | 82 | $res = $dbr->select( 'code_rev', '*', array( 'cr_id' => $revisions, 'cr_repo_id' => $this->mRepo->getId() ), __METHOD__ ); |
83 | | - foreach ($res as $row ) { |
| 83 | + foreach ( $res as $row ) { |
84 | 84 | $revObjects[] = CodeRevision::newFromRow( $this->mRepo, $row ); |
85 | 85 | } |
86 | 86 | |