diff --git a/app/call_flows/call_flows.php b/app/call_flows/call_flows.php
index c52b486127..481fb1b403 100644
--- a/app/call_flows/call_flows.php
+++ b/app/call_flows/call_flows.php
@@ -105,8 +105,8 @@ require_once "includes/paging.php";
echo th_order_by('call_flow_name', 'Name', $order_by, $order);
echo th_order_by('call_flow_extension', 'Extension', $order_by, $order);
echo th_order_by('call_flow_feature_code', 'Feature Code', $order_by, $order);
- echo "
Destination | \n";
- echo "Alternate Destination | \n";
+ //echo "Destination | \n";
+ //echo "Alternate Destination | \n";
echo th_order_by('call_flow_description', 'Description', $order_by, $order);
echo "\n";
if (permission_exists('call_flow_add')) {
@@ -133,8 +133,8 @@ require_once "includes/paging.php";
echo " | ".$row['call_flow_name']." | \n";
echo " ".$row['call_flow_extension']." | \n";
echo " ".$row['call_flow_feature_code']." | \n";
- echo " ".$row['call_flow_app']." ".$row['call_flow_data']." | \n";
- echo " ".$row['call_flow_anti_app']." ".$row['call_flow_anti_data']." | \n";
+ //echo " ".$row['call_flow_app']." ".$row['call_flow_data']." | \n";
+ //echo " ".$row['call_flow_anti_app']." ".$row['call_flow_anti_data']." | \n";
echo " ".$row['call_flow_description']." | \n";
echo " \n";
if (permission_exists('call_flow_edit')) {
|