Use permission fax_extension_view instead of if_group.

This commit is contained in:
FusionPBX 2021-03-18 10:44:43 -06:00 committed by GitHub
parent d0fbbd6a2e
commit 48cffe41da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2012
Portions created by the Initial Developer are Copyright (C) 2008-2021
the Initial Developer. All Rights Reserved.
Contributor(s):
@ -51,7 +51,7 @@
//get fax server uuid, set connection parameters
if (is_uuid($fax_uuid)) {
if (if_group("superadmin") || if_group("admin")) {
if (permission_exists('fax_extension_view')) {
//show all fax extensions
$sql = "select * from v_fax ";
$sql .= "where domain_uuid = :domain_uuid ";
@ -86,7 +86,7 @@
$fax_email_inbound_subject_tag = $row["fax_email_inbound_subject_tag"];
}
else {
if (!if_group("superadmin") && !if_group("admin")) {
if (!permission_exists('fax_extension_view')) {
echo "access denied";
exit;
}