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:
parent
0b6c0c135f
commit
95285aee50
1 changed files with 6 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue