mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-11 07:11:04 +01:00
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
This commit is contained in:
parent
e44b40ca4d
commit
8d348e2eeb
1 changed files with 2 additions and 2 deletions
|
@ -618,9 +618,9 @@ final class ManiphestTaskQuery extends PhabricatorCursorPagedPolicyAwareQuery {
|
|||
$joins = array();
|
||||
if ($this->hasOpenParents !== null) {
|
||||
if ($this->hasOpenParents) {
|
||||
$join_type = 'JOIN';
|
||||
$join_type = qsprintf($conn, 'JOIN');
|
||||
} else {
|
||||
$join_type = 'LEFT JOIN';
|
||||
$join_type = qsprintf($conn, 'LEFT JOIN');
|
||||
}
|
||||
|
||||
$joins[] = qsprintf(
|
||||
|
|
Loading…
Reference in a new issue