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

Clean up a couple of %Q issues in "Has Parents" task queries

Summary: Stragglers from the great "%Q" migration.

Test Plan: Ran a query for tasks with parent tasks.

Reviewers: amckinley

Reviewed By: amckinley

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

+2 -2
+2 -2
src/applications/maniphest/query/ManiphestTaskQuery.php
··· 618 618 $joins = array(); 619 619 if ($this->hasOpenParents !== null) { 620 620 if ($this->hasOpenParents) { 621 - $join_type = 'JOIN'; 621 + $join_type = qsprintf($conn, 'JOIN'); 622 622 } else { 623 - $join_type = 'LEFT JOIN'; 623 + $join_type = qsprintf($conn, 'LEFT JOIN'); 624 624 } 625 625 626 626 $joins[] = qsprintf(