@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 Macro active query

Summary: When using the active query in Macro, all Macros are returned. Properly set the status query.

Test Plan: Review active macros, don't see archived macros.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+3 -1
+3 -1
src/applications/macro/query/PhabricatorMacroSearchEngine.php
··· 111 111 112 112 switch ($query_key) { 113 113 case 'active': 114 - return $query; 114 + return $query->setParameter( 115 + 'status', 116 + PhabricatorMacroQuery::STATUS_ACTIVE); 115 117 case 'all': 116 118 return $query->setParameter( 117 119 'status',