$row[6] - ";
+ $INFOout .= "| $label_phone_number: | $phone_number_display - ";
if ($hide_dial_links < 1)
{
if ($manual_dial_filter > 0)
diff --git a/agc_2-X/trunk/www/agc/vicidial.php b/agc_2-X/trunk/www/agc/vicidial.php
index 13b5d78c..b150029b 100644
--- a/agc_2-X/trunk/www/agc/vicidial.php
+++ b/agc_2-X/trunk/www/agc/vicidial.php
@@ -624,10 +624,11 @@
# 191104-1759 - Fixes for translations
# 191105-0824 - Fix for issue #1177
# 191107-0935 - Added $webphone_call_seconds option
+# 191107-1011 - Fix for issue #1180, hide phone number in callback list
#
-$version = '2.14-593c';
-$build = '191107-0935';
+$version = '2.14-594c';
+$build = '191107-1011';
$mel=1; # Mysql Error Log enabled = 1
$mysql_log_count=91;
$one_mysql_log=0;
@@ -7668,6 +7669,9 @@ function set_length(SLnumber,SLlength_goal,SLdirection)
var call_array = all_CBs_array[conv_ct].split("-!T-");
var CB_name = call_array[0] + " " + call_array[1];
var CB_phone = call_array[2];
+ var CB_phone_display = call_array[2];
+ if (disable_alter_custphone == 'HIDE')
+ {CB_phone_display = 'XXXXXXXXXX';}
var CB_id = call_array[3];
var CB_lead_id = call_array[4];
var CB_campaign = call_array[5];
@@ -7695,11 +7699,11 @@ function set_length(SLnumber,SLlength_goal,SLdirection)
var alt_link = " ";
if (CB_alt_phone.length < 3)
{alt_link = " ";}
- CB_HTML = CB_HTML + "| " + loop_ct + " | " + CB_callback_time + " | " + CB_phone + " | " + CB_comments_ten + " - | " + CB_name + " | " + CB_status + " | " + CB_campaign + " | " + CB_lastcall_time + " | | " + alt_link + " | " + CB_cust_content;
+ CB_HTML = CB_HTML + "| " + loop_ct + " | " + CB_callback_time + " | " + CB_phone_display + " | " + CB_comments_ten + " - | " + CB_name + " | " + CB_status + " | " + CB_campaign + " | " + CB_lastcall_time + " | | " + alt_link + " | " + CB_cust_content;
}
else
{
- CB_HTML = CB_HTML + "| " + loop_ct + " | " + CB_callback_time + " | " + CB_phone + " | " + CB_comments_ten + " - INFO | " + CB_name + " | " + CB_status + " | " + CB_campaign + " | " + CB_lastcall_time + " | | + CB_cust_content";
+ CB_HTML = CB_HTML + "| " + loop_ct + " | " + CB_callback_time + " | " + CB_phone_display + " | " + CB_comments_ten + " - INFO | " + CB_name + " | " + CB_status + " | " + CB_campaign + " | " + CB_lastcall_time + " | | + CB_cust_content";
}
}
CB_HTML = CB_HTML + "";
|