@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 bin/accountadmin when not making changes

Summary: If you go through the `accountadmin` flow and change nothing, you get an exception about the transaction not having any effect. Instead, let the `applyTransactions` call continue even on no effect.

Test Plan: Ran `accountadmin` without changing anything for an existing user. No longer got an exception about no-effect transactions.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+1
+1
scripts/user/account_admin.php
··· 218 218 ->setActor($actor) 219 219 ->setActingAsPHID($people_application_phid) 220 220 ->setContentSource($content_source) 221 + ->setContinueOnNoEffect(true) 221 222 ->setContinueOnMissingFields(true); 222 223 223 224 $transaction_editor->applyTransactions($user, $xactions);