diff --git a/app/calls/app_languages.php b/app/calls/app_languages.php
index 74b2412421..71cb3aa6cf 100644
--- a/app/calls/app_languages.php
+++ b/app/calls/app_languages.php
@@ -37,17 +37,17 @@
$text['description-on-busy']['fr-fr'] = "Se il est activé, il remplace la valeur de la messagerie vocale permettant en extension.";
$text['description-on-busy']['it-it'] = "Se abilitato, esegue l'override del valore di abilitazione voicemail nell'estensione.";
- $text['label-unanswered']['en-us'] = "Unanswered";
- $text['label-unanswered']['es-cl'] = "Sin Respuesta";
- $text['label-unanswered']['pt-pt'] = "Sem Resposta";
- $text['label-unanswered']['fr-fr'] = "Sans Réponse";
- $text['label-unanswered']['it-it'] = "Senza Risposta";
+ $text['label-no_answer']['en-us'] = "No Answer";
+ $text['label-no_answer']['es-cl'] = "Sin Respuesta";
+ $text['label-no_answer']['pt-pt'] = "Sem Resposta";
+ $text['label-no_answer']['fr-fr'] = "Sans Réponse";
+ $text['label-no_answer']['it-it'] = "Senza Risposta";
- $text['description-unanswered']['en-us'] = "If enabled, it overrides the value of voicemail enabling in extension.";
- $text['description-unanswered']['es-cl'] = "Si está habilitada, anula el valor del correo de voz que permite en la extensión.";
- $text['description-unanswered']['pt-pt'] = "Se ativado, ele substitui o valor de correio de voz que permite em extensão.";
- $text['description-unanswered']['fr-fr'] = "Se il est activé, il remplace la valeur de la messagerie vocale permettant en extension.";
- $text['description-unanswered']['it-it'] = "Se abilitato, esegue l'override del valore di abilitazione voicemail nell'estensione.";
+ $text['description-no_answer']['en-us'] = "If enabled, it overrides the value of voicemail enabling in extension.";
+ $text['description-no_answer']['es-cl'] = "Si está habilitada, anula el valor del correo de voz que permite en la extensión.";
+ $text['description-no_answer']['pt-pt'] = "Se ativado, ele substitui o valor de correio de voz que permite em extensão.";
+ $text['description-no_answer']['fr-fr'] = "Se il est activé, il remplace la valeur de la messagerie vocale permettant en extension.";
+ $text['description-no_answer']['it-it'] = "Se abilitato, esegue l'override del valore di abilitazione voicemail nell'estensione.";
$text['label-enabled']['en-us'] = "Enabled";
$text['label-enabled']['es-cl'] = "Activo";
diff --git a/app/calls/call_edit.php b/app/calls/call_edit.php
index 68e159455b..0fb7d6f681 100644
--- a/app/calls/call_edit.php
+++ b/app/calls/call_edit.php
@@ -101,8 +101,8 @@ else {
$forward_all_enabled = $row["forward_all_enabled"];
$forward_busy_destination = $row["forward_busy_destination"];
$forward_busy_enabled = $row["forward_busy_enabled"];
- $forward_unanswered_destination = $row["forward_unanswered_destination"];
- $forward_unanswered_enabled = $row["forward_unanswered_enabled"];
+ $forward_no_answer_destination = $row["forward_no_answer_destination"];
+ $forward_no_answer_enabled = $row["forward_no_answer_enabled"];
$follow_me_uuid = $row["follow_me_uuid"];
break; //limit to 1 row
}
@@ -120,8 +120,8 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
$forward_all_destination = check_str($_POST["forward_all_destination"]);
$forward_busy_enabled = check_str($_POST["forward_busy_enabled"]);
$forward_busy_destination = check_str($_POST["forward_busy_destination"]);
- $forward_unanswered_enabled = check_str($_POST["forward_unanswered_enabled"]);
- $forward_unanswered_destination = check_str($_POST["forward_unanswered_destination"]);
+ $forward_no_answer_enabled = check_str($_POST["forward_no_answer_enabled"]);
+ $forward_no_answer_destination = check_str($_POST["forward_no_answer_destination"]);
$cid_name_prefix = check_str($_POST["cid_name_prefix"]);
$cid_number_prefix = check_str($_POST["cid_number_prefix"]);
$follow_me_enabled = check_str($_POST["follow_me_enabled"]);
@@ -159,8 +159,8 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
if (strlen($forward_busy_destination) > 0) {
// $forward_busy_destination = preg_replace("~[^0-9*]~", "",$forward_busy_destination);
}
- if (strlen($forward_unanswered_destination) > 0) {
- // $forward_unanswered_destination = preg_replace("~[^0-9*]~", "",$forward_unanswered_destination);
+ if (strlen($forward_no_answer_destination) > 0) {
+ // $forward_no_answer_destination = preg_replace("~[^0-9*]~", "",$forward_no_answer_destination);
}
if (strlen($destination_data_1) > 0) {
// $destination_data_1 = preg_replace("~[^0-9]~", "",$destination_data_1);
@@ -184,8 +184,8 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
//if (strlen($forward_all_destination) == 0) { $msg .= "Please provide: Forward Number
\n"; }
//if (strlen($forward_busy_enabled) == 0) { $msg .= "Please provide: On Busy
\n"; }
//if (strlen($forward_busy_destination) == 0) { $msg .= "Please provide: Busy Number
\n"; }
- //if (strlen($forward_unanswered_enabled) == 0) { $msg .= "Please provide: Unanswered
\n"; }
- //if (strlen($forward_unanswered_destination) == 0) { $msg .= "Please provide: Unanswered Number
\n"; }
+ //if (strlen($forward_no_answer_enabled) == 0) { $msg .= "Please provide: no_answer
\n"; }
+ //if (strlen($forward_no_answer_destination) == 0) { $msg .= "Please provide: no_answer Number
\n"; }
//if (strlen($follow_me_enabled) == 0) { $msg .= "Please provide: Follow Me
\n"; }
//if (strlen($destination_data_1) == 0) { $msg .= "Please provide: 1st Number
\n"; }
//if (strlen($destination_timeout_1) == 0) { $msg .= "Please provide: sec
\n"; }
@@ -361,12 +361,12 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
unset($ext);
}
- // Forward on busy and unanswered is stored in table and will be used by lua scripts
+ // Forward on busy and no_answer is stored in table and will be used by lua scripts
$sql = "update v_extensions set ";
$sql .= "forward_busy_destination = '".$forward_busy_destination."', ";
$sql .= "forward_busy_enabled = '".$forward_busy_enabled."', ";
- $sql .= "forward_unanswered_destination = '".$forward_unanswered_destination."', ";
- $sql .= "forward_unanswered_enabled = '".$forward_unanswered_enabled."' ";
+ $sql .= "forward_no_answer_destination = '".$forward_no_answer_destination."', ";
+ $sql .= "forward_no_answer_enabled = '".$forward_no_answer_enabled."' ";
$sql .= "where domain_uuid = '".$domain_uuid."' ";
$sql .= "and extension_uuid = '".$extension_uuid."'";
$db->exec(check_sql($sql));
@@ -550,17 +550,17 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo "