From 14cbce3fdd0e4bd44e7e9cd4a56a7b9a5ae1b495 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 28 Mar 2023 13:12:30 -0600 Subject: [PATCH] Add fax_status select list trying and busy --- app/fax_queue/fax_queue.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/app/fax_queue/fax_queue.php b/app/fax_queue/fax_queue.php index 777f746863..d9182a292d 100644 --- a/app/fax_queue/fax_queue.php +++ b/app/fax_queue/fax_queue.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. */ @@ -270,6 +270,18 @@ else { echo " \n"; } + if (isset($_GET["fax_status"]) && $_GET["fax_status"] == "trying") { + echo " \n"; + } + else { + echo " \n"; + } + if (isset($_GET["fax_status"]) && $_GET["fax_status"] == "busy") { + echo " \n"; + } + else { + echo " \n"; + } echo " \n"; if (permission_exists('fax_queue_all')) { if ($_GET['show'] == 'all') {