@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 file handles have "/Fxxx" as the URI

Summary:
Primarily, this fixes searching for `F123` in global search.

The info URI is now a better URI than the "best" URI for files, and doesn't have redirect issues.

Test Plan: Searched for `F123` in global search.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

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

+1 -1
+1 -1
src/applications/files/phid/PhabricatorFileFilePHIDType.php
··· 30 30 31 31 $id = $file->getID(); 32 32 $name = $file->getName(); 33 - $uri = $file->getBestURI(); 33 + $uri = $file->getInfoURI(); 34 34 35 35 $handle->setName("F{$id}"); 36 36 $handle->setFullName("F{$id}: {$name}");