Update fax_edit.php
This commit is contained in:
parent
49ad6da062
commit
36fc2a9097
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
The Initial Developer of the Original Code is
|
The Initial Developer of the Original Code is
|
||||||
Mark J Crane <markjcrane@fusionpbx.com>
|
Mark J Crane <markjcrane@fusionpbx.com>
|
||||||
Portions created by the Initial Developer are Copyright (C) 2008-2018
|
Portions created by the Initial Developer are Copyright (C) 2008-2019
|
||||||
the Initial Developer. All Rights Reserved.
|
the Initial Developer. All Rights Reserved.
|
||||||
|
|
||||||
Contributor(s):
|
Contributor(s):
|
||||||
|
|
@ -197,10 +197,10 @@
|
||||||
clearstatcache();
|
clearstatcache();
|
||||||
|
|
||||||
//process the data
|
//process the data
|
||||||
if (count($_POST) > 0 && is_uuid($_POST["fax_uuid"]) && strlen($_POST["persistformvar"]) == 0) {
|
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||||||
|
|
||||||
$msg = '';
|
$msg = '';
|
||||||
if ($action == "update" && permission_exists('fax_extension_edit')) {
|
if ($action == "update" && is_uuid($_POST["fax_uuid"]) && permission_exists('fax_extension_edit')) {
|
||||||
$fax_uuid = $_POST["fax_uuid"];
|
$fax_uuid = $_POST["fax_uuid"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -977,6 +977,7 @@
|
||||||
echo " <table cellpadding='0' cellspacing='0' border='0'>";
|
echo " <table cellpadding='0' cellspacing='0' border='0'>";
|
||||||
echo " <tr>";
|
echo " <tr>";
|
||||||
echo " <td id='authorized_senders'>";
|
echo " <td id='authorized_senders'>";
|
||||||
|
|
||||||
if (substr_count($fax_email_outbound_authorized_senders, ',') > 0) {
|
if (substr_count($fax_email_outbound_authorized_senders, ',') > 0) {
|
||||||
$senders = explode(',', $fax_email_outbound_authorized_senders);
|
$senders = explode(',', $fax_email_outbound_authorized_senders);
|
||||||
}
|
}
|
||||||
|
|
@ -1018,4 +1019,4 @@
|
||||||
//show the footer
|
//show the footer
|
||||||
require_once "resources/footer.php";
|
require_once "resources/footer.php";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Loading…
Reference in New Issue