@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
1diff --git a/src/applications/conpherence/controller/ConpherenceUpdateController b/src/applications/conpherence/controller/ConpherenceUpdateController
2--- a/src/applications/conpherence/controller/ConpherenceUpdateController
3+++ b/src/applications/conpherence/controller/ConpherenceUpdateController
4@@ -209,14 +209,19 @@
5 ->setDatasource(new PhabricatorPeopleDatasource()));
6
7 require_celerity_resource('conpherence-update-css');
8- return id(new AphrontDialogView())
9+ $view = id(new AphrontDialogView())
10 ->setTitle(pht('Add Participants'))
11 ->addHiddenInput('action', 'add_person')
12 ->addHiddenInput(
13 'latest_transaction_id',
14 $request->getInt('latest_transaction_id'))
15 ->appendChild($form);
16+
17+ if ($request->getExists('minimal_display')) {
18+ $view->addHiddenInput('minimal_display', true);
19 }
20+ return $view;
21+ }
22
23 private function renderRemovePersonDialogue(
24 ConpherenceThread $conpherence) {