mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-03-15 21:12:11 +00:00
Remove empty function from the destination_trunk_prefix
Empty treats 0 as empty which means the trunk prefix is not included. So to fix this issue had to remove the empty function.
This commit is contained in:
@@ -396,7 +396,7 @@
|
||||
if (isset($destination_prefix) && !empty($destination_prefix)) {
|
||||
$destination_numbers['destination_prefix'] = $destination_prefix;
|
||||
}
|
||||
if (isset($destination_trunk_prefix) && !empty($destination_trunk_prefix)) {
|
||||
if (isset($destination_trunk_prefix)) {
|
||||
$destination_numbers['destination_trunk_prefix'] = $destination_trunk_prefix;
|
||||
}
|
||||
if (isset($destination_area_code) && !empty($destination_area_code)) {
|
||||
|
||||
Reference in New Issue
Block a user