1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 12:00:55 +01:00

When creating a new revision, include the summary in the initial email

Summary: This got dropped in the ApplicationTransactions stuff.

Test Plan: Created a new revision.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: aran, epriestley

Differential Revision: https://secure.phabricator.com/D8495
This commit is contained in:
epriestley 2014-03-11 17:13:00 -07:00
parent 0b6c0c135f
commit 95285aee50

View file

@ -999,6 +999,12 @@ final class DifferentialTransactionEditor
$body = parent::buildMailBody($object, $xactions);
if ($this->getIsNewObject()) {
$body->addTextSection(
pht('REVISION SUMMARY'),
$object->getSummary());
}
$type_inline = DifferentialTransaction::TYPE_INLINE;
$inlines = array();