@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
1CTYPE 2 1 (unforced)
2src/applications/conpherence/controller/ConpherenceUpdateController
3src/applications/conpherence/controller/ConpherenceUpdateController
4-
5X <MISSING-CONTEXT>
6O 209 . ->setDatasource(new PhabricatorPeopleDatasource()));\n~
7N 209 . ->setDatasource(new PhabricatorPeopleDatasource()));\n~
8O 210 . \n~
9N 210 . \n~
10O 211 . require_celerity_resource('conpherence-update-css');\n~
11N 211 . require_celerity_resource('conpherence-update-css');\n~
12O 212 - {(return)} id(new AphrontDialogView())\n~
13N 212 + {($view =)} id(new AphrontDialogView())\n~
14O 213 . ->setTitle(pht('Add Participants'))\n~
15N 213 . ->setTitle(pht('Add Participants'))\n~
16O 214 . ->addHiddenInput('action', 'add_person')\n~
17N 214 . ->addHiddenInput('action', 'add_person')\n~
18O 215 . ->addHiddenInput(\n~
19N 215 . ->addHiddenInput(\n~
20O 216 . 'latest_transaction_id',\n~
21N 216 . 'latest_transaction_id',\n~
22O 217 . $request->getInt('latest_transaction_id'))\n~
23N 217 . $request->getInt('latest_transaction_id'))\n~
24O 218 . ->appendChild($form);\n~
25N 218 . ->appendChild($form);\n~
26O - . ~
27N 219 + \n~
28O - . ~
29N 220 + if ($request->getExists('minimal_display')) {\n~
30O - . ~
31N 221 + $view->addHiddenInput('minimal_display', true);\n~
32O 219 . }\n~
33N 222 . }\n~
34O - . ~
35N 223 + return $view;\n~
36O - . ~
37N 224 + }\n~
38O 220 . \n~
39N 225 . \n~
40O 221 . private function renderRemovePersonDialogue(\n~
41N 226 . private function renderRemovePersonDialogue(\n~
42O 222 . ConpherenceThread $conpherence) {\n~
43N 227 . ConpherenceThread $conpherence) {\n~
44X <MISSING-CONTEXT>