From 3fdd8c497c6e5fb4ef52d810914fbe97ccde993b Mon Sep 17 00:00:00 2001 From: epriestley Date: Sat, 7 Apr 2012 10:01:14 -0700 Subject: [PATCH] Possible fix for T1076, pushing to verify. I think the issue is that we don't set the left-side changesetID correctly. This seems to work correctly locally, but I'm not sure I got a good repro. Pushing to verify the production test cases provided in T1076. Auditors: vrana, btrahan --- .../changesetview/DifferentialChangesetViewController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/differential/controller/changesetview/DifferentialChangesetViewController.php b/src/applications/differential/controller/changesetview/DifferentialChangesetViewController.php index 5a21cfbc1d..eb354e95f1 100644 --- a/src/applications/differential/controller/changesetview/DifferentialChangesetViewController.php +++ b/src/applications/differential/controller/changesetview/DifferentialChangesetViewController.php @@ -230,6 +230,7 @@ final class DifferentialChangesetViewController extends DifferentialController { $detail = new DifferentialChangesetDetailView(); $detail->setChangeset($changeset); $detail->appendChild($output); + $detail->setVsChangesetID($left_source); $detail->setRevisionID($request->getInt('revision_id'));