Index: trunk/extensions/CodeReview/ui/CodeStatusChangeListView.php |
— | — | @@ -54,6 +54,7 @@ |
55 | 55 | 'cpc_timestamp' => wfMsg( 'code-field-timestamp' ), |
56 | 56 | 'cpc_user_text' => wfMsg( 'code-field-user' ), |
57 | 57 | 'cpc_rev_id' => wfMsg( 'code-field-id' ), |
| 58 | + 'cr_author' => WfMsg( 'code-field-author' ), |
58 | 59 | 'cr_message' => wfMsg( 'code-field-message' ), |
59 | 60 | 'cpc_removed' => wfMsg( 'code-old-status' ), |
60 | 61 | 'cpc_added' => wfMsg( 'code-new-status' ), |
— | — | @@ -67,6 +68,8 @@ |
68 | 69 | return $this->mView->skin->link( |
69 | 70 | SpecialPage::getTitleFor( 'Code', $this->mRepo->getName() . '/' . $value . '#code-changes' ), |
70 | 71 | htmlspecialchars( $value ) ); |
| 72 | + case 'cr_author': |
| 73 | + return $this->mView->authorLink( $value ); |
71 | 74 | case 'cr_message': |
72 | 75 | return $this->mView->messageFragment( $value ); |
73 | 76 | case 'cr_status': |