mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-11 07:11:04 +01:00
Fix another qsprintf() straggler in "Has Open Subtasks"
Summary: See <https://discourse.phabricator-community.org/t/error-message-is-not-being-logged-when-unable-to-connect-to-the-database/2201/>. Test Plan: Queried for "With Open Subtasks" and "With No Open Subtasks". Reviewers: amckinley, joshuaspence Reviewed By: joshuaspence Subscribers: joshuaspence Differential Revision: https://secure.phabricator.com/D19880
This commit is contained in:
parent
9aa5a52fbd
commit
ecae936d97
1 changed files with 2 additions and 2 deletions
|
@ -641,9 +641,9 @@ final class ManiphestTaskQuery extends PhabricatorCursorPagedPolicyAwareQuery {
|
|||
|
||||
if ($this->hasOpenSubtasks !== null) {
|
||||
if ($this->hasOpenSubtasks) {
|
||||
$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