From 91cfa5f778ddf606329c8bec22f6e7b353dd09eb Mon Sep 17 00:00:00 2001 From: Antonio Fernandez Date: Mon, 12 Feb 2024 18:11:46 -0500 Subject: [PATCH] added missing fax_email permission (#6894) This permission is referenced in the fax_edit.php code and allows you to enter a confirmation email for faxes that are sent. Without this permission it is no editable. --- app/fax/app_config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/fax/app_config.php b/app/fax/app_config.php index ce51680e56..92f588ada2 100644 --- a/app/fax/app_config.php +++ b/app/fax/app_config.php @@ -262,6 +262,11 @@ //$apps[$x]['permissions'][$y]['groups'][] = "superadmin"; //$apps[$x]['permissions'][$y]['groups'][] = "admin"; //$apps[$x]['permissions'][$y]['groups'][] = "fax"; + $y++; + $apps[$x]['permissions'][$y]['name'] = "fax_email"; + $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; + $apps[$x]['permissions'][$y]['groups'][] = "admin"; + $apps[$x]['permissions'][$y]['groups'][] = "fax"; //default settings $y=0;