Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15428791
D9167.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
D9167.diff
View Options
diff --git a/src/applications/phriction/controller/PhrictionEditController.php b/src/applications/phriction/controller/PhrictionEditController.php
--- a/src/applications/phriction/controller/PhrictionEditController.php
+++ b/src/applications/phriction/controller/PhrictionEditController.php
@@ -93,6 +93,36 @@
$errors = array();
if ($request->isFormPost()) {
+
+ $overwrite = $request->getBool('overwrite');
+ if (!$overwrite) {
+ $edit_version = $request->getStr('contentVersion');
+ $current_version = $content->getVersion();
+ if ($edit_version != $current_version) {
+ $dialog = $this->newDialog()
+ ->setTitle(pht('Edit Conflict!'))
+ ->appendParagraph(
+ pht(
+ 'Another user made changes to this document after you began '.
+ 'editing it. Do you want to overwrite their changes?'))
+ ->appendParagraph(
+ pht(
+ 'If you choose to overwrite their changes, you should review '.
+ 'the document edit history to see what you overwrote, and '.
+ 'then make another edit to merge the changes if necessary.'))
+ ->addSubmitButton(pht('Overwrite Changes'))
+ ->addCancelButton($request->getRequestURI());
+
+ $dialog->addHiddenInput('overwrite', 'true');
+ foreach ($request->getPassthroughRequestData() as $key => $value) {
+ $dialog->addHiddenInput($key, $value);
+ }
+
+ return $dialog;
+ }
+ }
+
+
$title = $request->getStr('title');
$notes = $request->getStr('description');
@@ -192,6 +222,7 @@
->setAction($request->getRequestURI()->getPath())
->addHiddenInput('slug', $document->getSlug())
->addHiddenInput('nodraft', $request->getBool('nodraft'))
+ ->addHiddenInput('contentVersion', $content->getVersion())
->appendChild(
id(new AphrontFormTextControl())
->setLabel(pht('Title'))
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 10:19 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7708426
Default Alt Text
D9167.diff (1 KB)
Attached To
Mode
D9167: Add very basic conflict detection to Phriction
Attached
Detach File
Event Timeline
Log In to Comment