diff --git a/app/dialplan_inbound/dialplan_inbound_add.php b/app/dialplan_inbound/dialplan_inbound_add.php index 2c28d3d2d8..f11eaf95e0 100644 --- a/app/dialplan_inbound/dialplan_inbound_add.php +++ b/app/dialplan_inbound/dialplan_inbound_add.php @@ -53,7 +53,7 @@ else { //get the http post values and set them as php variables if (count($_POST)>0) { $dialplan_name = check_str($_POST["dialplan_name"]); - $redial_outbound_prefix = check_str($_POST["redial_outbound_prefix"]); + $caller_id_outbound_prefix = check_str($_POST["caller_id_outbound_prefix"]); $limit = check_str($_POST["limit"]); $public_order = check_str($_POST["public_order"]); $condition_field_1 = check_str($_POST["condition_field_1"]); @@ -352,7 +352,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { } //set redial outbound prefix - if (strlen($redial_outbound_prefix) > 0) { + if (strlen($caller_id_outbound_prefix) > 0) { $dialplan_detail_uuid = uuid(); $sql = "insert into v_dialplan_details "; $sql .= "("; @@ -372,7 +372,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { $sql .= "'$dialplan_detail_uuid', "; $sql .= "'action', "; $sql .= "'set', "; - $sql .= "'effective_caller_id_number=".$redial_outbound_prefix."\${caller_id_number}', "; + $sql .= "'effective_caller_id_number=".$caller_id_outbound_prefix."\${caller_id_number}', "; $sql .= "'0', "; $sql .= "'70' "; $sql .= ")"; @@ -990,12 +990,12 @@ $destination = new destinations; echo "\n"; echo "\n"; - echo " ".$text['label-redial-outbound-prefix']."\n"; + echo " ".$text['label-caller-id-number-prefix']."\n"; echo "\n"; echo "\n"; - echo " \n"; + echo " \n"; echo "
\n"; - echo "".$text['description-redial-outbound-prefix']."
\n"; + echo "".$text['description-caller-id-number-prefix']."
\n"; echo "\n"; echo "\n"; echo "\n";