Index: trunk/extensions/CodeReview/backend/CodeRevision.php |
— | — | @@ -752,7 +752,6 @@ |
753 | 753 | 'cc_user' => $wgUser->getId(), |
754 | 754 | 'cc_user_text' => $wgUser->getName(), |
755 | 755 | 'cc_timestamp' => $dbw->timestamp( $ts ), |
756 | | - 'cc_review' => $review, |
757 | 756 | 'cc_sortkey' => $sortkey ); |
758 | 757 | } |
759 | 758 | |
— | — | @@ -807,7 +806,6 @@ |
808 | 807 | 'cc_user_text', |
809 | 808 | 'cc_patch_line', |
810 | 809 | 'cc_timestamp', |
811 | | - 'cc_review', |
812 | 810 | 'cc_sortkey' ), |
813 | 811 | $conditions, |
814 | 812 | __METHOD__, |
Index: trunk/extensions/CodeReview/backend/CodeComment.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * Represents a comment made to a revision. |
6 | 6 | */ |
7 | 7 | class CodeComment { |
8 | | - public $id, $text, $user, $userText, $timestamp, $review, $sortkey, $attrib, $removed, $added, $patchLine; |
| 8 | + public $id, $text, $user, $userText, $timestamp, $sortkey, $attrib, $removed, $added, $patchLine; |
9 | 9 | |
10 | 10 | /** |
11 | 11 | * @var CodeRevision |
— | — | @@ -48,7 +48,6 @@ |
49 | 49 | 'cc_user_text', |
50 | 50 | 'cc_patch_line', |
51 | 51 | 'cc_timestamp', |
52 | | - 'cc_review', |
53 | 52 | 'cc_sortkey' |
54 | 53 | ), |
55 | 54 | array( 'cc_id' => (int) $cc_id ), |
— | — | @@ -70,7 +69,6 @@ |
71 | 70 | $comment->userText = $data['cc_user_text']; |
72 | 71 | $comment->timestamp = wfTimestamp( TS_MW, $data['cc_timestamp'] ); |
73 | 72 | $comment->patchLine = $data['cc_patch_line']; |
74 | | - $comment->review = $data['cc_review']; |
75 | 73 | $comment->sortkey = $data['cc_sortkey']; |
76 | 74 | return $comment; |
77 | 75 | } |