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

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

+2 -2
+2 -2
src/applications/maniphest/query/ManiphestTaskQuery.php
··· 641 641 642 642 if ($this->hasOpenSubtasks !== null) { 643 643 if ($this->hasOpenSubtasks) { 644 - $join_type = 'JOIN'; 644 + $join_type = qsprintf($conn, 'JOIN'); 645 645 } else { 646 - $join_type = 'LEFT JOIN'; 646 + $join_type = qsprintf($conn, 'LEFT JOIN'); 647 647 } 648 648 649 649 $joins[] = qsprintf(