1
0
Fork 0
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:
epriestley 2015-06-06 06:37:56 -07:00
parent 1e4e121956
commit b4de79741c

View file

@ -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);