Index: branches/wmf/1.17wmf1/extensions/CodeReview/ui/CodeCommentsListView.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | ); |
57 | 57 | |
58 | 58 | if( $this->mView->mAuthor ) { |
59 | | - $query['conds']['cc_user_text'] = $this->mView->mAuthor; |
| 59 | + $query['conds']['cc_user_text'] = User::newFromName( $this->mView->mAuthor )->getName(); |
60 | 60 | } |
61 | 61 | |
62 | 62 | return $query; |
Index: branches/wmf/1.17wmf1/extensions/CodeReview/ui/CodeStatusChangeListView.php |
— | — | @@ -53,7 +53,7 @@ |
54 | 54 | ); |
55 | 55 | |
56 | 56 | if ( $this->mView->mAuthor ) { |
57 | | - $query['conds']['cpc_user_text'] = $this->mView->mAuthor; |
| 57 | + $query['conds']['cpc_user_text'] = User::newFromName( $this->mView->mAuthor )->getName(); |
58 | 58 | } |
59 | 59 | |
60 | 60 | return $query; |
Property changes on: branches/wmf/1.17wmf1/extensions/CodeReview |
___________________________________________________________________ |
Modified: svn:mergeinfo |
61 | 61 | Merged /trunk/extensions/CodeReview:r88584 |