mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix a minor issue with the approval queue
Ref T8454. This got gummed up in swapping between double negatives like "noDisabled". Viewed queue, saw "Hide Disabled Users" instead of "Show Only Disabled Users". Auditors: joshuaspence, btrahan
This commit is contained in:
parent
1e4e121956
commit
b4de79741c
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ final class PhabricatorPeopleSearchEngine
|
|||
case 'approval':
|
||||
return $query
|
||||
->setParameter('needsApproval', true)
|
||||
->setParameter('isDisabled', true);
|
||||
->setParameter('isDisabled', false);
|
||||
}
|
||||
|
||||
return parent::buildSavedQueryFromBuiltin($query_key);
|
||||
|
|
Loading…
Reference in a new issue