diff --git a/src/applications/countdown/editor/PhabricatorCountdownEditor.php b/src/applications/countdown/editor/PhabricatorCountdownEditor.php index 05c5bbb7de..6fc699646d 100644 --- a/src/applications/countdown/editor/PhabricatorCountdownEditor.php +++ b/src/applications/countdown/editor/PhabricatorCountdownEditor.php @@ -188,11 +188,13 @@ final class PhabricatorCountdownEditor } protected function getMailTo(PhabricatorLiskDAO $object) { - return array($object->getAuthorPHID()); + return array( + $object->getAuthorPHID(), + $this->requireActor()->getPHID(), + ); } - protected function getMailSubjectPrefix() { - return 'Countdown'; + return '[Countdown]'; } protected function buildReplyHandler(PhabricatorLiskDAO $object) {