From fea633581756d3f68ab8d6630140baf6b16bc98e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 18 Jul 2018 17:08:25 -0600 Subject: [PATCH] Update call_center_queue_edit.php --- app/call_centers/call_center_queue_edit.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/call_centers/call_center_queue_edit.php b/app/call_centers/call_center_queue_edit.php index e493662580..9cb9e4e3e0 100644 --- a/app/call_centers/call_center_queue_edit.php +++ b/app/call_centers/call_center_queue_edit.php @@ -427,6 +427,10 @@ $prep_statement->execute(); $agents = $prep_statement->fetchAll(PDO::FETCH_NAMED); +//get the sounds + $sounds = new sounds; + $sounds = $sounds->get(); + //set default values if (strlen($queue_strategy) == 0) { $queue_strategy = "longest-idle-agent"; } if (strlen($queue_moh_sound) == 0) { $queue_moh_sound = "\$\${hold_music}"; }