Removed 'Parameter' option from Tag select box and language file, adjusted display attribute to fix glitchy select boxes.
This commit is contained in:
parent
a721ca6758
commit
a94e7b2f96
|
|
@ -400,11 +400,6 @@
|
|||
$text['option-anti-action']['pt-pt'] = "Anti-Acção";
|
||||
$text['option-anti-action']['fr-fr'] = "Anti-Action";
|
||||
|
||||
$text['option-param']['en-us'] = "Parameter";
|
||||
$text['option-param']['es-cl'] = "Parámetro";
|
||||
$text['option-param']['pt-pt'] = "Parâmetro";
|
||||
$text['option-param']['fr-fr'] = "Paramètre";
|
||||
|
||||
$text['option-regex']['en-us'] = "Regular Expression";
|
||||
$text['option-regex']['pt-pt'] = "Expressão Regular";
|
||||
$text['option-regex']['es-cl'] = "Expresión Regular";
|
||||
|
|
|
|||
|
|
@ -549,7 +549,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
|||
//determine whether to hide the element
|
||||
if (strlen($dialplan_detail_tag) == 0) {
|
||||
$element['hidden'] = false;
|
||||
$element['visibility'] = "display: inline;";
|
||||
$element['visibility'] = "";
|
||||
}
|
||||
else {
|
||||
$element['hidden'] = true;
|
||||
|
|
@ -571,8 +571,6 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
|||
echo " <option value='regex' ".($dialplan_detail_tag == "regex" ? $selected : null).">".$text['option-regex']."</option>\n";
|
||||
echo " <option value='action' ".($dialplan_detail_tag == "action" ? $selected : null).">".$text['option-action']."</option>\n";
|
||||
echo " <option value='anti-action' ".($dialplan_detail_tag == "anti-action" ? $selected : null).">".$text['option-anti-action']."</option>\n";
|
||||
echo " <option value='param' ".($dialplan_detail_tag == "param" ? $selected : null).">".$text['option-param']."</option>\n";
|
||||
//echo " <option value='condition' ".($dialplan_detail_tag == "condition" ? $selected : null).">".$text['option-condition']."</option>\n";
|
||||
echo " </select>\n";
|
||||
echo "</td>\n";
|
||||
//type
|
||||
|
|
|
|||
Loading…
Reference in New Issue