@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 "Attach <x>" dialog showing too much stuff

Summary: After the recent search changes, the filter here changed from `type` to `types`. Currently, if you click "Attach Differential Revisions", it shows objects of too many types.

Test Plan: Clickced "Attach Differential Revisions" or whatever it's called, just saw revisions.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

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

+1 -1
+1 -1
src/applications/search/controller/PhabricatorSearchSelectController.php
··· 21 21 22 22 $query->setEngineClassName('PhabricatorSearchApplicationSearchEngine'); 23 23 $query->setParameter('query', $query_str); 24 - $query->setParameter('type', $this->type); 24 + $query->setParameter('types', array($this->type)); 25 25 26 26 switch ($request->getStr('filter')) { 27 27 case 'assigned':