From d15c7719b90aed399090cfcc2f562afcaba5d291 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 28 Feb 2017 21:57:35 -0700 Subject: [PATCH] Update ring_group_forward.php --- app/ring_groups/ring_group_forward.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/ring_groups/ring_group_forward.php b/app/ring_groups/ring_group_forward.php index 341cf8466d..4d78f74b63 100644 --- a/app/ring_groups/ring_group_forward.php +++ b/app/ring_groups/ring_group_forward.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) 2013 + Portions created by the Initial Developer are Copyright (C) 2013-2017 the Initial Developer. All Rights Reserved. Contributor(s): @@ -122,7 +122,9 @@ } else { //show only assigned ring groups - $sql = "select r.ring_group_uuid, r.ring_group_extension, r.ring_group_description from v_ring_groups as r, v_ring_group_users as u "; + $sql = "select r.ring_group_name, r.ring_group_uuid, r.ring_group_extension, r.ring_group_forward_destination, "; + $sql .= "r.ring_group_forward_enabled, r.ring_group_description "; + $sql .= "from v_ring_groups as r, v_ring_group_users as u "; $sql .= "where r.ring_group_uuid = u.ring_group_uuid "; $sql .= "and r.domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and u.user_uuid = '".$_SESSION['user_uuid']."' ";