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

Respect type in symbol query

Summary: Was completely ignored.

Test Plan: /diffusion/symbol/C/?type=function

Reviewers: alanh

Reviewed By: alanh

CC: aran, epriestley

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

vrana 9030fe8b 81946fc0

+7
+7
src/applications/diffusion/query/DiffusionSymbolQuery.php
··· 225 225 $this->language); 226 226 } 227 227 228 + if ($this->type) { 229 + $where[] = qsprintf( 230 + $conn_r, 231 + 'symbolType = %s', 232 + $this->type); 233 + } 234 + 228 235 return $this->formatWhereClause($where); 229 236 } 230 237