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

Use `sort`, not `text`, for search index table

Summary: Ref T1191. The index's case sensitivity depends on the column type. Using `text` makes the search case-sensitive, which is not desirable.

Test Plan: After adjustment, searched for "PROJECTS" and found hits against "projects".

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T1191

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

+1 -1
+1 -1
src/applications/search/storage/document/PhabricatorSearchDocumentField.php
··· 15 15 'phidType' => 'text4', 16 16 'field' => 'text4', 17 17 'auxPHID' => 'phid?', 18 - 'corpus' => 'text?', 18 + 'corpus' => 'sort?', 19 19 ), 20 20 self::CONFIG_KEY_SCHEMA => array( 21 21 'key_phid' => null,