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

Make "Dnn" and "Tnn" match case-insensitively in the "attach" dialog

Summary: These patterns are hard-coded, allow them to match case-insenstiviely.

Test Plan: Typed "d3" and "D3", got the right object in the attach dialog.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T1253

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

+2 -2
+2 -2
src/applications/search/controller/select/PhabricatorSearchSelectController.php
··· 80 80 $pattern = null; 81 81 switch ($this->type) { 82 82 case PhabricatorPHIDConstants::PHID_TYPE_TASK: 83 - $pattern = '/\bT(\d+)\b/'; 83 + $pattern = '/\bT(\d+)\b/i'; 84 84 break; 85 85 case PhabricatorPHIDConstants::PHID_TYPE_DREV: 86 - $pattern = '/\bD(\d+)\b/'; 86 + $pattern = '/\bD(\d+)\b/i'; 87 87 break; 88 88 } 89 89