From 2582720028a7a072177ee46ffbe7ba5facde8162 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 12 Apr 2023 18:35:32 -0600 Subject: [PATCH] Add permission domain_select --- core/domains/domain_json.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/domains/domain_json.php b/core/domains/domain_json.php index b38ebc32fd..f55d146067 100644 --- a/core/domains/domain_json.php +++ b/core/domains/domain_json.php @@ -17,7 +17,7 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2022 + Portions created by the Initial Developer are Copyright (C) 2023 the Initial Developer. All Rights Reserved. Contributor(s): @@ -63,7 +63,7 @@ //echo "\n"; //get the list of domains - if (permission_exists('domain_all')) { + if (permission_exists('domain_all') || permission_exists('domain_select')) { $sql = "select * "; $sql .= "from v_domains "; $sql .= "where true ";