@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixed localcommits include on getDiffDict

Summary: Ref T10808

Test Plan: Call `differential.querydiffs` method and expect 'local:commits' property be added to the result.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Maniphest Tasks: T10808

Differential Revision: https://secure.phabricator.com/D15710

+1 -2
+1 -2
src/applications/differential/storage/DifferentialDiff.php
··· 249 249 'unitStatus' => $this->getUnitStatus(), 250 250 'lintStatus' => $this->getLintStatus(), 251 251 'changes' => array(), 252 - 'properties' => array(), 253 252 ); 254 253 255 254 $dict['changes'] = $this->buildChangesList(); ··· 258 257 } 259 258 260 259 public function getDiffAuthorshipDict() { 261 - $dict = array(); 260 + $dict = array('properties' => array()); 262 261 263 262 $properties = id(new DifferentialDiffProperty())->loadAllWhere( 264 263 'diffID = %d',