Index: trunk/extensions/CodeReview/backend/CodeRevision.php |
— | — | @@ -341,7 +341,7 @@ |
342 | 342 | $revisionAuthor = $revision->getWikiUser(); |
343 | 343 | |
344 | 344 | //Add the followup revision author if they have not already been added as a commentor (they won't want dupe emails!) |
345 | | - if ( !array_key_exists( $revisionAuthor->getId(), $users ) { |
| 345 | + if ( !array_key_exists( $revisionAuthor->getId(), $users ) ) { |
346 | 346 | $users[$revisionAuthor->getId()] = $revisionAuthor; |
347 | 347 | } |
348 | 348 | |