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

Correct bad context path when doing pattern search inside a repository

Summary:
Ref PHI101. It looks like this was maybe copy/pasted by mistake in recent design refactoring.

We need to pass the full path, not the `basename()` of the path, to the search form.

Test Plan: Searched inside `scripts/test/`, found results inside `scripts/test/`.

Reviewers: amckinley

Reviewed By: amckinley

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

+2 -1
+2 -1
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 1557 1557 1558 1558 $commit_tag = $this->renderCommitHashTag($drequest); 1559 1559 1560 - $path = nonempty(basename($drequest->getPath()), '/'); 1560 + $path = nonempty($drequest->getPath(), '/'); 1561 + 1561 1562 $search = $this->renderSearchForm($path); 1562 1563 1563 1564 $header = id(new PHUIHeaderView())