@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator

Stop exposing raw "accountID" values directly in the web UI

Summary:
Ref T13493. The "AuthAccountView" UI element currently exposes raw account ID values, but I'm trying to make these many-to-one.

This isn't terribly useful as-is, so get rid of it. This element could use a design refresh in general.

Test Plan: Viewed the UI element in "External Accounts".

Maniphest Tasks: T13493

Differential Revision: https://secure.phabricator.com/D21010

-4
-4
src/applications/auth/view/PhabricatorAuthAccountView.php
··· 37 37 $use_name = $username; 38 38 } else if (strlen($realname)) { 39 39 $use_name = $realname; 40 - } else { 41 - $use_name = $account->getAccountID(); 42 40 } 43 41 44 42 $content[] = phutil_tag( ··· 61 59 ), 62 60 array( 63 61 $prov_name, 64 - " \xC2\xB7 ", 65 - $account->getAccountID(), 66 62 )); 67 63 68 64 $account_uri = $account->getAccountURI();