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

Fix an excessively aggressive transaction check in Owners

Summary: Fixes T10058. We don't need to continue on this check if no path changes are being applied.

Test Plan: Archived an owners package.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10058

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

+4
+4
src/applications/owners/editor/PhabricatorOwnersPackageTransactionEditor.php
··· 204 204 } 205 205 break; 206 206 case PhabricatorOwnersPackageTransaction::TYPE_PATHS: 207 + if (!$xactions) { 208 + continue; 209 + } 210 + 207 211 $old = mpull($object->getPaths(), 'getRef'); 208 212 foreach ($xactions as $xaction) { 209 213 $new = $xaction->getNewValue();