Update extension_edit.php
This commit is contained in:
parent
6f8a116c82
commit
2de15017e6
|
|
@ -321,8 +321,12 @@
|
|||
if (permission_exists('extension_accountcode')) {
|
||||
$array["extensions"][$i]["accountcode"] = $accountcode;
|
||||
}
|
||||
if (permission_exists("effective_caller_id_name")) {
|
||||
$array["extensions"][$i]["effective_caller_id_name"] = $effective_caller_id_name;
|
||||
}
|
||||
if (permission_exists("effective_caller_id_number")) {
|
||||
$array["extensions"][$i]["effective_caller_id_number"] = $effective_caller_id_number;
|
||||
}
|
||||
if (permission_exists("outbound_caller_id_name")) {
|
||||
$array["extensions"][$i]["outbound_caller_id_name"] = $outbound_caller_id_name;
|
||||
}
|
||||
|
|
@ -1136,6 +1140,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
if (permission_exists("effective_caller_id_name")) {
|
||||
echo "<tr>\n";
|
||||
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
||||
echo " ".$text['label-effective_caller_id_name']."\n";
|
||||
|
|
@ -1146,7 +1151,9 @@
|
|||
echo $text['description-effective_caller_id_name']."\n";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
}
|
||||
|
||||
if (permission_exists("effective_caller_id_number")) {
|
||||
echo "<tr>\n";
|
||||
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
||||
echo " ".$text['label-effective_caller_id_number']."\n";
|
||||
|
|
@ -1157,6 +1164,7 @@
|
|||
echo $text['description-effective_caller_id_number']."\n";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
}
|
||||
|
||||
if (permission_exists("outbound_caller_id_name")) {
|
||||
echo "<tr>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue