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

Make Maniphest emails align title numbers better and fix a transaction

aggregation bug.

Summary:
Transactions always aggregated even when separated by large time
differences becuase of some clown typoing; fix that. Also make the subject
lines for tasks align better in the inbox.

Test Plan:
I'm feeling lucky.

Differential Revision: 29
Reviewed By: tomo
Reviewers: tomo
This commit is contained in:
epriestley 2011-02-09 20:12:20 -08:00
parent 193dbf16b4
commit e8e185ceb3
2 changed files with 2 additions and 2 deletions

View file

@ -154,7 +154,7 @@ class ManiphestTransactionEditor {
id(new PhabricatorMetaMTAMail())
->setSubject(
'[Maniphest] '.$action.': T'.$task->getID().' '.$task->getTitle())
'[Maniphest] T'.$task->getID().' '.$action.': '.$task->getTitle())
->setFrom($transaction->getAuthorPHID())
->addTos($email_to)
->addCCs($email_cc)

View file

@ -66,7 +66,7 @@ class ManiphestTransaction extends ManiphestDAO {
return false;
}
$ttime = $target->getDateCreated();
$stime = $target->getDateCreated();
$stime = $this->getDateCreated();
if (abs($stime - $ttime) > 60) {
return false;
}