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:
parent
f5e71eb889
commit
057d857568
2 changed files with 1 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue