mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Fixed for /differential/diff
Summary: It was broken Test Plan: Sandbox Reviewed By: grglr Reviewers: grglr, epriestley CC: aran, grglr Differential Revision: 280
This commit is contained in:
parent
43405c354d
commit
70807fb4e2
1 changed files with 7 additions and 1 deletions
|
@ -107,8 +107,14 @@ class DifferentialDiffViewController extends DifferentialController {
|
|||
$table_of_contents = id(new DifferentialDiffTableOfContentsView())
|
||||
->setChangesets($changesets);
|
||||
|
||||
$refs = array();
|
||||
foreach ($changesets as $changeset) {
|
||||
$refs[$changeset->getID()] = $changeset->getID();
|
||||
}
|
||||
|
||||
$details = id(new DifferentialChangesetListView())
|
||||
->setChangesets($changesets);
|
||||
->setChangesets($changesets)
|
||||
->setRenderingReferences($refs);
|
||||
|
||||
return $this->buildStandardPageResponse(
|
||||
'<div class="differential-primary-pane">'.
|
||||
|
|
Loading…
Reference in a new issue