1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Typeahead lists by name, not by email.

This commit is contained in:
epriestley 2011-04-04 11:30:01 -07:00
parent 6c32a99012
commit 06ae6e488b

View file

@ -78,7 +78,7 @@ class PhabricatorTypeaheadCommonDatasourceController
$lists = id(new PhabricatorMetaMTAMailingList())->loadAll();
foreach ($lists as $list) {
$data[] = array(
$list->getEmail(),
$list->getName(),
$list->getURI(),
$list->getPHID(),
);