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

Change (No Filtering) to be the default selected option.

Summary: Cleaning up my mess, (No Filtering) should be the default selected option in macros search form.

Test Plan: Go to /macro/query/advanced/ and verify that (No Filtering) is the default selected option.

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, aran

Maniphest Tasks: T3692

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

authored by

Tarmo Lehtpuu and committed by
epriestley
dc28d161 7225dc45

+1 -1
+1 -1
src/applications/macro/query/PhabricatorMacroSearchEngine.php
··· 14 14 $saved->setParameter('nameLike', $request->getStr('nameLike')); 15 15 $saved->setParameter('createdStart', $request->getStr('createdStart')); 16 16 $saved->setParameter('createdEnd', $request->getStr('createdEnd')); 17 - $saved->setParameter('flagColor', $request->getStr('flagColor')); 17 + $saved->setParameter('flagColor', $request->getStr('flagColor', '-1')); 18 18 19 19 return $saved; 20 20 }