@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.

Merge pull request #238 from hfcorriez/master

Fix call to undefined method for DifferentialChangesetParser::originalRight()

+1 -1
+1 -1
src/applications/differential/parser/DifferentialChangesetParser.php
··· 1140 1140 return $output; 1141 1141 } 1142 1142 1143 - if ($this->originalLeft && $this->originalRight()) { 1143 + if ($this->originalLeft && $this->originalRight) { 1144 1144 list($highlight_old, $highlight_new) = $this->diffOriginals(); 1145 1145 $highlight_old = array_flip($highlight_old); 1146 1146 $highlight_new = array_flip($highlight_new);