@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 a broken class reference

Summary: This was broken in D13374. Also rearranged a few classes.

Test Plan: `arc lint`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

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

+3 -3
+2 -2
src/__phutil_library_map__.php
··· 2830 2830 'PhabricatorUserRealNameField' => 'applications/people/customfield/PhabricatorUserRealNameField.php', 2831 2831 'PhabricatorUserRolesField' => 'applications/people/customfield/PhabricatorUserRolesField.php', 2832 2832 'PhabricatorUserSchemaSpec' => 'applications/people/storage/PhabricatorUserSchemaSpec.php', 2833 - 'PhabricatorUserSearchIndexer' => 'applications/people/searchfield/PhabricatorUserSearchIndexer.php', 2833 + 'PhabricatorUserSearchIndexer' => 'applications/people/search/PhabricatorUserSearchIndexer.php', 2834 2834 'PhabricatorUserSinceField' => 'applications/people/customfield/PhabricatorUserSinceField.php', 2835 2835 'PhabricatorUserStatusField' => 'applications/people/customfield/PhabricatorUserStatusField.php', 2836 2836 'PhabricatorUserTestCase' => 'applications/people/storage/__tests__/PhabricatorUserTestCase.php', 2837 2837 'PhabricatorUserTitleField' => 'applications/people/customfield/PhabricatorUserTitleField.php', 2838 2838 'PhabricatorUserTransaction' => 'applications/people/storage/PhabricatorUserTransaction.php', 2839 2839 'PhabricatorUsersPolicyRule' => 'applications/policy/rule/PhabricatorUsersPolicyRule.php', 2840 - 'PhabricatorUsersSearchField' => 'applications/people/search/PhabricatorUserSearchField.php', 2840 + 'PhabricatorUsersSearchField' => 'applications/people/searchfield/PhabricatorUsersSearchField.php', 2841 2841 'PhabricatorVCSResponse' => 'applications/repository/response/PhabricatorVCSResponse.php', 2842 2842 'PhabricatorVeryWowEnglishTranslation' => 'infrastructure/internationalization/translation/PhabricatorVeryWowEnglishTranslation.php', 2843 2843 'PhabricatorViewerDatasource' => 'applications/people/typeahead/PhabricatorViewerDatasource.php',
+1 -1
src/applications/conpherence/query/ConpherenceThreadSearchEngine.php
··· 18 18 19 19 protected function buildCustomSearchFields() { 20 20 return array( 21 - id(new PhabricatorSearchUsersField()) 21 + id(new PhabricatorUsersSearchField()) 22 22 ->setLabel(pht('Participants')) 23 23 ->setKey('participants') 24 24 ->setAliases(array('participant')),
src/applications/people/search/PhabricatorUserSearchField.php src/applications/people/searchfield/PhabricatorUsersSearchField.php
src/applications/people/searchfield/PhabricatorUserSearchIndexer.php src/applications/people/search/PhabricatorUserSearchIndexer.php