Needs to say empty rather than not empty

This commit is contained in:
FusionPBX 2023-06-26 10:24:18 -06:00 committed by GitHub
parent 39c81b60c4
commit 3e64700259
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$database = new database;
$tiers = $database->select($sql, $parameters, 'all');
if (!empty($tiers)) {
if (empty($tiers)) {
$per_queue_login = true;
}
else {