Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15413391
D9376.id22347.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
D9376.id22347.diff
View Options
diff --git a/src/applications/differential/editor/DifferentialTransactionEditor.php b/src/applications/differential/editor/DifferentialTransactionEditor.php
--- a/src/applications/differential/editor/DifferentialTransactionEditor.php
+++ b/src/applications/differential/editor/DifferentialTransactionEditor.php
@@ -1284,19 +1284,20 @@
$changeset_ids[$id] = $id;
}
- if ($show_context) {
- $hunk_parser = new DifferentialHunkParser();
- $changesets = id(new DifferentialChangesetQuery())
- ->setViewer($this->getActor())
- ->withIDs($changeset_ids)
- ->needHunks(true)
- ->execute();
- }
+ $changesets = id(new DifferentialChangesetQuery())
+ ->setViewer($this->getActor())
+ ->withIDs($changeset_ids)
+ ->needHunks(true)
+ ->execute();
$inline_groups = DifferentialTransactionComment::sortAndGroupInlines(
$inlines,
$changesets);
+ if ($show_context) {
+ $hunk_parser = new DifferentialHunkParser();
+ }
+
$result = array();
foreach ($inline_groups as $changeset_id => $group) {
$changeset = idx($changesets, $changeset_id);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 6:24 PM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7305330
Default Alt Text
D9376.id22347.diff (1 KB)
Attached To
Mode
D9376: Fix undefinded $changesets when submitting inline comments in Differential
Attached
Detach File
Event Timeline
Log In to Comment