@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
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix display of admin "new value" in `accountadmin` script

Summary: I broke this when converting to PhabricatorUserEditor.

Test Plan:
Ran `accountadmin`, created an admin account, verified the "new value" column showed "Y".

ACCOUNT SUMMARY

OLD VALUE NEW VALUE
Username derp
Real Name derprp
Email derp@derp.com
Password Unchanged
Admin N Y

Reviewers: btrahan, nikil

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T1434

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

+1 -1
+1 -1
scripts/user/account_admin.php
··· 136 136 $tpl, 137 137 'Admin', 138 138 $original->getIsAdmin() ? 'Y' : 'N', 139 - $user->getIsAdmin() ? 'Y' : 'N'); 139 + $set_admin ? 'Y' : 'N'); 140 140 141 141 echo "\n"; 142 142