1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-03 11:21:01 +01:00

Add newline to Differential review request e-mail

This commit is contained in:
vrana 2012-06-07 23:59:31 -07:00
parent 5752faecce
commit 692296a4d4
2 changed files with 2 additions and 0 deletions

View file

@ -29,6 +29,7 @@ final class DifferentialCCWelcomeMail extends DifferentialReviewRequestMail {
$body = array(); $body = array();
$body[] = "{$actor} added you to the CC list for the revision \"{$name}\"."; $body[] = "{$actor} added you to the CC list for the revision \"{$name}\".";
$body[] = null;
$body[] = $this->renderReviewRequestBody(); $body[] = $this->renderReviewRequestBody();

View file

@ -44,6 +44,7 @@ final class DifferentialNewDiffMail extends DifferentialReviewRequestMail {
} else { } else {
$body[] = "{$actor} updated the revision \"{$name}\"."; $body[] = "{$actor} updated the revision \"{$name}\".";
} }
$body[] = null;
$body[] = $this->renderReviewRequestBody(); $body[] = $this->renderReviewRequestBody();