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

Correct flipped transaction constants in "Closed Date" migration

Summary: These transaction constants are flipped, which can produce the wrong result in some cases.

Test Plan: `./bin/storage upgrade -f --apply phabricator:20180208.maniphest.02.populate.php`

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

+2 -2
+2 -2
resources/sql/autopatches/20180208.maniphest.02.populate.php
··· 20 20 // where the task was closed. A merge also counts as a close, even though 21 21 // it doesn't currently produce a separate transaction. 22 22 23 - $type_merge = ManiphestTaskStatusTransaction::TRANSACTIONTYPE; 24 - $type_status = ManiphestTaskMergedIntoTransaction::TRANSACTIONTYPE; 23 + $type_status = ManiphestTaskStatusTransaction::TRANSACTIONTYPE; 24 + $type_merge = ManiphestTaskMergedIntoTransaction::TRANSACTIONTYPE; 25 25 26 26 $xactions = id(new ManiphestTransactionQuery()) 27 27 ->setViewer($viewer)