1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 00:32:42 +01:00

Fix whitespace in Package e-mail

Test Plan: Changed package, verified e-mail.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D3559
This commit is contained in:
vrana 2012-09-27 14:40:56 -07:00
parent f5e71eb889
commit 057d857568
2 changed files with 1 additions and 2 deletions

View file

@ -160,7 +160,7 @@ abstract class PackageMail {
$body[] = $this->renderAuditingEnabledSection();
$body[] = $this->renderPathsSection();
$body = array_filter($body);
return implode("\n\n", $body);
return implode("\n\n", $body)."\n";
}
final public function send() {

View file

@ -98,7 +98,6 @@ final class PackageModifyMail extends PackageMail {
$handles[$old_primary_owner_phid]->getName();
$section[] = ' New owner: ' .
$handles[$primary_owner_phid]->getName();
$section[] = '';
return implode("\n", $section);
}