Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15393180
D19267.id46123.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
D19267.id46123.diff
View Options
diff --git a/src/applications/differential/xaction/DifferentialRevisionUpdateTransaction.php b/src/applications/differential/xaction/DifferentialRevisionUpdateTransaction.php
--- a/src/applications/differential/xaction/DifferentialRevisionUpdateTransaction.php
+++ b/src/applications/differential/xaction/DifferentialRevisionUpdateTransaction.php
@@ -137,7 +137,32 @@
continue;
}
- if ($diff->getRevisionID()) {
+ $is_attached = ($diff->getRevisionID() == $object->getID());
+ if ($is_attached) {
+ $is_active = ($diff_phid == $object->getActiveDiffPHID());
+ } else {
+ $is_active = false;
+ }
+
+ if ($is_attached) {
+ if ($is_active) {
+ // This is a no-op: we're reattaching the current active diff to the
+ // revision it is already attached to. This is valid and will just
+ // be dropped later on in the process.
+ } else {
+ // At least for now, there's no support for "undoing" a diff and
+ // reverting to an older proposed change without just creating a
+ // new diff from whole cloth.
+ $errors[] = $this->newInvalidError(
+ pht(
+ 'You can not update this revision with the specified diff '.
+ '("%s") because this diff is already attached to the revision '.
+ 'as an older version of the change.',
+ $diff_phid),
+ $xaction);
+ continue;
+ }
+ } else if ($diff->getRevisionID()) {
$errors[] = $this->newInvalidError(
pht(
'You can not update this revision with the specified diff ("%s") '.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 16, 8:14 PM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7471723
Default Alt Text
D19267.id46123.diff (1 KB)
Attached To
Mode
D19267: Make updating a revision with the same active diff a no-op
Attached
Detach File
Event Timeline
Log In to Comment