@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Condition "Changes Since Last Action" Differential link on "first broadcast", not "new object"

Summary: Ref T13187. Ref T13176. With drafts, we actually want to suppress this link on "first broadcast" (the first time we send mail), not on "new object" (when the revision is created as a draft).

Test Plan: Poked at this locally, will keep an eye on it in production.

Reviewers: amckinley

Maniphest Tasks: T13187, T13176

Differential Revision: https://secure.phabricator.com/D19598

+1 -1
+1 -1
src/applications/differential/editor/DifferentialTransactionEditor.php
··· 671 671 672 672 $this->addCustomFieldsToMailBody($body, $object, $xactions); 673 673 674 - if (!$this->getIsNewObject()) { 674 + if (!$this->isFirstBroadcast()) { 675 675 $body->addLinkSection(pht('CHANGES SINCE LAST ACTION'), $new_uri); 676 676 } 677 677