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:
parent
22e43fffac
commit
18892ff211
|
|
@ -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"];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue