@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 searching by tags work in Phriction

Summary: Fixes T12860. Some joins were being dropped because we didn't call `parent::...`

Test Plan:
- Tagged a document.
- Searched for documents with that tag.
- Before change: got all documents.
- After change: got only tagged documents.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12860

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

+1 -1
+1 -1
src/applications/phriction/query/PhrictionDocumentQuery.php
··· 163 163 } 164 164 165 165 protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) { 166 - $joins = array(); 166 + $joins = parent::buildJoinClauseParts($conn); 167 167 168 168 if ($this->getOrderVector()->containsKey('updated')) { 169 169 $content_dao = new PhrictionContent();