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

Put "Task" first on global search result type list

Summary: Fixes T4606. Also shortens two unusual type names which are currently inconsistent.

Test Plan: Expanded advanced search.

Reviewers: chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T4606

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

+9 -2
+1 -1
src/applications/differential/phid/DifferentialPHIDTypeRevision.php
··· 9 9 } 10 10 11 11 public function getTypeName() { 12 - return pht('Differential Revision'); 12 + return pht('Revision'); 13 13 } 14 14 15 15 public function newObject() {
+1 -1
src/applications/people/phid/PhabricatorPeoplePHIDTypeUser.php
··· 9 9 } 10 10 11 11 public function getTypeName() { 12 - return pht('Phabricator User'); 12 + return pht('User'); 13 13 } 14 14 15 15 public function getTypeIcon() {
+7
src/applications/search/query/PhabricatorSearchApplicationSearchEngine.php
··· 216 216 217 217 asort($results); 218 218 219 + // Put tasks first, see T4606. 220 + $results = array_select_keys( 221 + $results, 222 + array( 223 + ManiphestPHIDTypeTask::TYPECONST, 224 + )) + $results; 225 + 219 226 return $results; 220 227 } 221 228