From 18892ff21115f34da1cc32b9e224d24a0c16f3b7 Mon Sep 17 00:00:00 2001 From: Luis Daniel Lucio Quiroz Date: Sat, 29 Apr 2017 22:13:11 -0400 Subject: [PATCH] Typo in the CC exit key patch (#2550) I did a bad copy and paste, reading $_POST where it was $row --- app/call_centers/call_center_queue_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/call_centers/call_center_queue_edit.php b/app/call_centers/call_center_queue_edit.php index 4b7914a339..4849a05fff 100644 --- a/app/call_centers/call_center_queue_edit.php +++ b/app/call_centers/call_center_queue_edit.php @@ -381,7 +381,7 @@ $queue_cid_prefix = $row["queue_cid_prefix"]; $queue_announce_sound = $row["queue_announce_sound"]; $queue_announce_frequency = $row["queue_announce_frequency"]; - $queue_cc_exit_keys = check_str($_POST["queue_cc_exit_keys"]); + $queue_cc_exit_keys = $row["queue_cc_exit_keys"]; $queue_description = $row["queue_description"]; } }