diff --git a/src/applications/feed/story/PhabricatorFeedStory.php b/src/applications/feed/story/PhabricatorFeedStory.php index c1d696dc53..4f642845f0 100644 --- a/src/applications/feed/story/PhabricatorFeedStory.php +++ b/src/applications/feed/story/PhabricatorFeedStory.php @@ -28,6 +28,7 @@ abstract class PhabricatorFeedStory { } abstract public function renderView(); + abstract public function renderNotificationView(); public function getRequiredHandlePHIDs() { return array(); diff --git a/src/applications/feed/story/PhabricatorFeedStoryManiphest.php b/src/applications/feed/story/PhabricatorFeedStoryManiphest.php index b8d6492cfb..36cbe5c168 100644 --- a/src/applications/feed/story/PhabricatorFeedStoryManiphest.php +++ b/src/applications/feed/story/PhabricatorFeedStoryManiphest.php @@ -70,7 +70,6 @@ final class PhabricatorFeedStoryManiphest $view = new PhabricatorNotificationStoryView(); - $view->setEpoch($data->getEpoch()); $view->setTitle($this->getLineForData($data)); $view->setEpoch($data->getEpoch()); $view->setViewed($this->getHasViewed()); diff --git a/src/applications/maniphest/editor/ManiphestTransactionEditor.php b/src/applications/maniphest/editor/ManiphestTransactionEditor.php index 3e2a80a080..d27ec0cd3c 100644 --- a/src/applications/maniphest/editor/ManiphestTransactionEditor.php +++ b/src/applications/maniphest/editor/ManiphestTransactionEditor.php @@ -369,9 +369,7 @@ final class ManiphestTransactionEditor { array( $author_phid, $owner_phid, - $actor_phid - ) - ), + $actor_phid)), $task->getCCPHIDs())) ->publish(); }