From 37893ed7741397b6a30b4734b460bc2acad6f7be Mon Sep 17 00:00:00 2001 From: Chad Little Date: Mon, 27 Jul 2015 07:19:52 -0700 Subject: [PATCH] Countdown mail support part Summary: I still can't figure out why feed/mail aren't firing, but this needs fixed regardless. (honestly, I spent 2 hours on it last night. ghosts) Test Plan: lint Reviewers: eadler, epriestley Reviewed By: eadler, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13723 --- .../countdown/editor/PhabricatorCountdownEditor.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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) {