Inbound routes dialplan continue set default to false

This commit is contained in:
Mark Crane
2014-06-09 20:00:28 +00:00
parent e7d6f5e9ab
commit 684db5bdd9
2 changed files with 3 additions and 1 deletions

View File

@@ -164,7 +164,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
$dialplan["dialplan_name"] = format_phone($destination_number);
$dialplan["dialplan_number"] = $destination_number;
$dialplan["dialplan_context"] = $destination_context;
$dialplan["dialplan_continue"] = "true";
$dialplan["dialplan_continue"] = "false";
$dialplan["dialplan_order"] = "100";
$dialplan["dialplan_enabled"] = $destination_enabled;
$dialplan["dialplan_description"] = $destination_description;

View File

@@ -158,6 +158,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
$sql .= "dialplan_uuid, ";
$sql .= "app_uuid, ";
$sql .= "dialplan_name, ";
$sql .= "dialplan_continue, ";
$sql .= "dialplan_order, ";
$sql .= "dialplan_context, ";
$sql .= "dialplan_enabled, ";
@@ -169,6 +170,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
$sql .= "'$dialplan_uuid', ";
$sql .= "'c03b422e-13a8-bd1b-e42b-b6b9b4d27ce4', ";
$sql .= "'$dialplan_name', ";
$sql .= "'false', ";
$sql .= "'$public_order', ";
$sql .= "'public', ";
$sql .= "'$dialplan_enabled', ";