mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-09 10:08:23 +00:00
Fix the form field name when adding an inbound route.
This commit is contained in:
@@ -683,7 +683,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
$prep_statement->execute();
|
||||
$result = $prep_statement->fetchAll(PDO::FETCH_ASSOC);
|
||||
if (count($result) > 0) {
|
||||
echo " <select name='".$condition_expression_1."' id='".$condition_expression_1."' class='formfld' style='width: 60%;' >\n";
|
||||
echo " <select name='condition_expression_1' id='condition_expression_1' class='formfld' style='width: 60%;' >\n";
|
||||
echo " <option></option>\n";
|
||||
foreach ($result as &$row) {
|
||||
echo " <option value='".$row["destination_number"]."'>".$row["destination_number"]."</option>\n";
|
||||
|
||||
Reference in New Issue
Block a user