diff --git a/src/applications/maniphest/query/ManiphestTaskSearchEngine.php b/src/applications/maniphest/query/ManiphestTaskSearchEngine.php --- a/src/applications/maniphest/query/ManiphestTaskSearchEngine.php +++ b/src/applications/maniphest/query/ManiphestTaskSearchEngine.php @@ -370,6 +370,11 @@ ->setName('subscribers') ->setLabel(pht('Subscribers')) ->setValue($subscriber_handles)) + ->appendChild( + id(new AphrontFormTextControl()) + ->setName('fulltext') + ->setLabel(pht('Contains Text')) + ->setValue($saved->getParameter('fulltext'))) ->appendChild($status_control) ->appendChild($priority_control); @@ -392,11 +397,6 @@ $form ->appendChild( id(new AphrontFormTextControl()) - ->setName('fulltext') - ->setLabel(pht('Contains Words')) - ->setValue($saved->getParameter('fulltext'))) - ->appendChild( - id(new AphrontFormTextControl()) ->setName('ids') ->setLabel(pht('Task IDs')) ->setValue(implode(', ', $ids)));