mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
More-robust search for task assignees
Summary: See discussion in D19415. Test Plan: Searched for some owners, found tasks as expected. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D19417
This commit is contained in:
parent
ef48a2b2ee
commit
dd6e82698a
1 changed files with 1 additions and 1 deletions
|
@ -585,7 +585,7 @@ final class ManiphestTaskQuery extends PhabricatorCursorPagedPolicyAwareQuery {
|
|||
'task.ownerPHID IS NOT NULL');
|
||||
}
|
||||
|
||||
if ($this->ownerPHIDs) {
|
||||
if ($this->ownerPHIDs !== null) {
|
||||
$subclause[] = qsprintf(
|
||||
$conn,
|
||||
'task.ownerPHID IN (%Ls)',
|
||||
|
|
Loading…
Reference in a new issue