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

Sort arcanist projects by name

Summary: Fixes T3691.

Test Plan: they be sorted now

Reviewers: epriestley

Reviewed By: epriestley

CC: edward, Korvin, aran

Maniphest Tasks: T3691

Differential Revision: https://secure.phabricator.com/D6714
This commit is contained in:
Bob Trahan 2013-08-09 18:09:28 -07:00
parent ada749236a
commit 7225dc4525

View file

@ -28,6 +28,8 @@ final class PhabricatorRepositoryArcanistProjectEditController
$name = $repository->getname();
$repos[$repository->getID()] = "r{$callsign} ({$name})";
}
// note "None" will still be first thanks to 'r' prefix
asort($repos);
if ($request->isFormPost()) {