Index: trunk/extensions/CodeReview/ui/CodeCommentsAuthorListView.php |
— | — | @@ -3,6 +3,6 @@ |
4 | 4 | class CodeCommentsAuthorListView extends CodeCommentsListView { |
5 | 5 | function __construct( $repo, $author ) { |
6 | 6 | parent::__construct( $repo ); |
7 | | - $this->mAuthor = $author; |
| 7 | + $this->mAuthor = $author; |
8 | 8 | } |
9 | 9 | } |
Index: trunk/extensions/CodeReview/ui/SpecialCode.php |
— | — | @@ -115,7 +115,7 @@ |
116 | 116 | $view = new CodeRevisionAuthorLink( $params[0], $params[2] ); |
117 | 117 | break; |
118 | 118 | } elseif ( $params[1] === 'comments' ) { |
119 | | - $view = new CodeCommentAuthorListView( $params[0], $params[3] ); |
| 119 | + $view = new CodeCommentsAuthorListView( $params[0], $params[3] ); |
120 | 120 | break; |
121 | 121 | } |
122 | 122 | default: |