Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15196941
D10952.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D10952.diff
View Options
diff --git a/src/applications/conpherence/controller/ConpherenceUpdateController.php b/src/applications/conpherence/controller/ConpherenceUpdateController.php
--- a/src/applications/conpherence/controller/ConpherenceUpdateController.php
+++ b/src/applications/conpherence/controller/ConpherenceUpdateController.php
@@ -212,6 +212,9 @@
return id(new AphrontDialogView())
->setTitle(pht('Add Participants'))
->addHiddenInput('action', 'add_person')
+ ->addHiddenInput(
+ 'latest_transaction_id',
+ $request->getInt('latest_transaction_id'))
->appendChild($form);
}
@@ -241,8 +244,11 @@
return id(new AphrontDialogView())
->setTitle(pht('Remove Participants'))
->addHiddenInput('action', 'remove_person')
- ->addHiddenInput('__continue__', true)
->addHiddenInput('remove_person', $remove_person)
+ ->addHiddenInput(
+ 'latest_transaction_id',
+ $request->getInt('latest_transaction_id'))
+ ->addHiddenInput('__continue__', true)
->appendChild($body);
}
@@ -250,6 +256,7 @@
ConpherenceThread $conpherence,
$error_view) {
+ $request = $this->getRequest();
$form = id(new PHUIFormLayoutView())
->appendChild($error_view)
->appendChild(
@@ -262,6 +269,9 @@
return id(new AphrontDialogView())
->setTitle(pht('Update Conpherence'))
->addHiddenInput('action', 'metadata')
+ ->addHiddenInput(
+ 'latest_transaction_id',
+ $request->getInt('latest_transaction_id'))
->addHiddenInput('__continue__', true)
->appendChild($form);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Feb 23, 7:53 PM (13 h, 18 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7187629
Default Alt Text
D10952.diff (1 KB)
Attached To
Mode
D10952: Conpherence - fix add participant / remove participant form
Attached
Detach File
Event Timeline
Log In to Comment