Typo in the CC exit key patch (#2550)

I did a bad copy and paste, reading $_POST where it was $row
This commit is contained in:
Luis Daniel Lucio Quiroz 2017-04-29 22:13:11 -04:00 committed by FusionPBX
parent 22e43fffac
commit 18892ff211
1 changed files with 1 additions and 1 deletions

View File

@ -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"];
}
}