@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 "Recently Closed" column for custom task statuses

Summary: Fixes T5056.

Test Plan: Viewed locally, saw numbers.

Reviewers: btrahan, shadowhand

Reviewed By: shadowhand

Subscribers: shadowhand, epriestley

Maniphest Tasks: T5056

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

+2 -1
+2 -1
src/applications/maniphest/controller/ManiphestReportController.php
··· 663 663 $tasks = queryfx_all( 664 664 $conn_r, 665 665 'SELECT t.* FROM %T t JOIN %T x ON x.objectPHID = t.phid 666 - WHERE t.status != 0 666 + WHERE t.status NOT IN (%Ls) 667 667 AND x.oldValue IN (null, %Ls) 668 668 AND x.newValue NOT IN (%Ls) 669 669 AND t.dateModified >= %d 670 670 AND x.dateCreated >= %d', 671 671 $table->getTableName(), 672 672 $xtable->getTableName(), 673 + ManiphestTaskStatus::getOpenStatusConstants(), 673 674 $open_status_list, 674 675 $open_status_list, 675 676 $window_epoch,