From 10a4974bd68f27a607274a45e3cc463ef66cf1ff Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 14 Mar 2024 13:10:52 -0600 Subject: [PATCH] Bug fix add bridge_uuid --- app/bridges/bridges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bridges/bridges.php b/app/bridges/bridges.php index 0acad99c3c..e1815e6847 100644 --- a/app/bridges/bridges.php +++ b/app/bridges/bridges.php @@ -126,7 +126,7 @@ $offset = $rows_per_page * $page; //get the list - $sql = "select d.domain_name, b.bridge_name, b.bridge_destination, bridge_enabled, bridge_description "; + $sql = "select b.bridge_uuid, d.domain_name, b.bridge_name, b.bridge_destination, bridge_enabled, bridge_description "; $sql .= "from v_bridges as b, v_domains as d "; $sql .= "where b.domain_uuid = d.domain_uuid "; if (!empty($show) && $show == "all" && permission_exists('bridge_all')) {