mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 21:32:43 +01:00
Allow mailing lists to be referenced by name in commit messages.
This commit is contained in:
parent
9d4d258a0b
commit
69bfd8e598
1 changed files with 2 additions and 1 deletions
|
@ -228,7 +228,8 @@ class DifferentialCommitMessage {
|
||||||
$mail = id(new PhabricatorMetaMTAMailingList())->loadAllWhere(
|
$mail = id(new PhabricatorMetaMTAMailingList())->loadAllWhere(
|
||||||
'email in (%Ls)',
|
'email in (%Ls)',
|
||||||
$need_mail);
|
$need_mail);
|
||||||
$mail = mpull($mail, 'getPHID', 'getEmail');
|
$mail = mpull($mail, 'getPHID', 'getName') +
|
||||||
|
mpull($mail, 'getPHID', 'getEmail');
|
||||||
} else {
|
} else {
|
||||||
$mail = array();
|
$mail = array();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue