1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Show a better account name in Phortune account handles

Summary: Accounts have proper names now.

Test Plan: Saw a better name on Instances view.

Reviewers: chad, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D11766
This commit is contained in:
epriestley 2015-02-13 11:00:29 -08:00
parent e5b402d13f
commit 532c440e84

View file

@ -30,7 +30,7 @@ final class PhortuneAccountPHIDType extends PhabricatorPHIDType {
$id = $account->getID();
$handle->setName(pht('Account %d', $id));
$handle->setName($account->getName());
$handle->setURI("/phortune/{$id}/");
}
}