mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
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
This commit is contained in:
parent
a33e84e1e5
commit
da0da83431
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ printf(
|
|||
$tpl,
|
||||
'Admin',
|
||||
$original->getIsAdmin() ? 'Y' : 'N',
|
||||
$user->getIsAdmin() ? 'Y' : 'N');
|
||||
$set_admin ? 'Y' : 'N');
|
||||
|
||||
echo "\n";
|
||||
|
||||
|
|
Loading…
Reference in a new issue