diff --git a/app/xml_cdr/xml_cdr.php b/app/xml_cdr/xml_cdr.php index bf0e5a641c..514e64d52c 100644 --- a/app/xml_cdr/xml_cdr.php +++ b/app/xml_cdr/xml_cdr.php @@ -225,7 +225,7 @@ echo "
| \n"; - echo " ".$text['label-source']."\n"; + echo " ".$text['label-caller_id_number']."\n"; echo " | \n"; echo "\n"; echo " \n"; @@ -256,7 +256,7 @@ echo " |
| \n"; - echo " ".$text['label-cid-name']."\n"; + echo " ".$text['label-caller_id_name']."\n"; echo " | \n"; echo "\n"; echo " \n"; @@ -376,8 +376,8 @@ echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, null, null, $param); $col_count++; } - echo th_order_by('caller_id_name', $text['label-cid-name'], $order_by, $order, null, null, $param); - echo th_order_by('caller_id_number', $text['label-source'], $order_by, $order, null, null, $param); + echo th_order_by('caller_id_name', $text['label-caller_id_name'], $order_by, $order, null, null, $param); + echo th_order_by('caller_id_number', $text['label-caller_id_number'], $order_by, $order, null, null, $param); if (permission_exists('caller_destination')) { echo th_order_by('caller_destination', $text['label-caller_destination'], $order_by, $order, null, null, $param); } |