From bbfdd2f789e563cb0dc2eab918a245eeba17ca60 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 30 Jun 2016 09:53:18 -0600 Subject: [PATCH] Update sip_status.php Just use the gateway name when its global and @domain_name when its assigned to a domain. --- app/sip_status/sip_status.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/sip_status/sip_status.php b/app/sip_status/sip_status.php index ef52a7f266..575e9018a3 100644 --- a/app/sip_status/sip_status.php +++ b/app/sip_status/sip_status.php @@ -182,7 +182,7 @@ if ($_GET['a'] == "download") { echo "".$gateway_name."@".$gateway_domain_name.""; } elseif ($gateway_domain_name == '') { - echo $gateway_name."@(Global)"; + echo $gateway_name; else { echo $gateway_name."@".$gateway_domain_name; } @@ -323,4 +323,4 @@ if ($_GET['a'] == "download") { //include the footer require_once "resources/footer.php"; -?> \ No newline at end of file +?>