From 0fc0af6443f3278bab5dbe5eefe81c16f5a8582b Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 4 Jun 2015 09:48:52 -0700 Subject: [PATCH] Let Maniphest send mail again. Ha ha ha! Fixes T8422. Auditors: btrahan --- .../maniphest/editor/ManiphestTransactionEditor.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/applications/maniphest/editor/ManiphestTransactionEditor.php b/src/applications/maniphest/editor/ManiphestTransactionEditor.php index 66dbe3aa28..bad2ba4091 100644 --- a/src/applications/maniphest/editor/ManiphestTransactionEditor.php +++ b/src/applications/maniphest/editor/ManiphestTransactionEditor.php @@ -373,6 +373,12 @@ final class ManiphestTransactionEditor return $xactions; } + protected function shouldSendMail( + PhabricatorLiskDAO $object, + array $xactions) { + return true; + } + protected function getMailSubjectPrefix() { return PhabricatorEnv::getEnvConfig('metamta.maniphest.subject-prefix'); }