From 680254935560c2b5ba18e3224cb3f255bd40a73b Mon Sep 17 00:00:00 2001 From: Chad Little Date: Mon, 27 Jul 2015 09:56:03 -0700 Subject: [PATCH] Fix mail title in Countdown Summary: Fixes T8959. Countdown now makes feed stories and emails. Test Plan: Comment on, edit, a countdown. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8959 Differential Revision: https://secure.phabricator.com/D13738 --- .../countdown/editor/PhabricatorCountdownEditor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/countdown/editor/PhabricatorCountdownEditor.php b/src/applications/countdown/editor/PhabricatorCountdownEditor.php index 6fc699646d..97f8e5b947 100644 --- a/src/applications/countdown/editor/PhabricatorCountdownEditor.php +++ b/src/applications/countdown/editor/PhabricatorCountdownEditor.php @@ -160,7 +160,7 @@ final class PhabricatorCountdownEditor protected function buildMailTemplate(PhabricatorLiskDAO $object) { $monogram = $object->getMonogram(); - $name = $object->getName(); + $name = $object->getTitle(); return id(new PhabricatorMetaMTAMail()) ->setSubject("{$monogram}: {$name}")