From 4dbfe5efe8eb2b8375247940669ffa6d6d61d4bd Mon Sep 17 00:00:00 2001 From: mattf Date: Sat, 31 Dec 2016 18:39:34 +0000 Subject: [PATCH] Fixed issue #985, inbound dispo call url git-svn-id: svn://192.168.202.10@2656 3d104415-ff17-0410-8863-d5cf3c621b8a --- agc_2-X/trunk/www/agc/vdc_db_query.php | 14 +++++++++----- agc_2-X/trunk/www/vicidial/help.php | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/agc_2-X/trunk/www/agc/vdc_db_query.php b/agc_2-X/trunk/www/agc/vdc_db_query.php index 3fbf938c..08b1e0b8 100644 --- a/agc_2-X/trunk/www/agc/vdc_db_query.php +++ b/agc_2-X/trunk/www/agc/vdc_db_query.php @@ -417,10 +417,11 @@ # 161102-1044 - Fixed QM partition problem # 161117-0622 - Fixes for rare vicidial_log and recording_log issues # 161222-0728 - Fixed issue with Scheduled Callbacks with tilde'~' in text fields +# 161231-1250 - Fixed issue #985, inbound dispo call url # -$version = '2.14-311'; -$build = '161222-0728'; +$version = '2.14-312'; +$build = '161231-1250'; $php_script = 'vdc_db_query.php'; $mel=1; # Mysql Error Log enabled = 1 $mysql_log_count=658; @@ -10133,9 +10134,12 @@ if ($ACTION == 'updateDISPO') $rslt=mysql_to_mysqli($stmt, $link); if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00286',$user,$server_ip,$session_name,$one_mysql_log);} $row=mysqli_fetch_row($rslt); - $dispo_call_url = $row[0]; - $DUcampaign_id = $stage; - $DUentry_type = 'ingroup'; + if ($row[0] != 'CAMP') + { + $dispo_call_url = $row[0]; + $DUcampaign_id = $stage; + $DUentry_type = 'ingroup'; + } } else { diff --git a/agc_2-X/trunk/www/vicidial/help.php b/agc_2-X/trunk/www/vicidial/help.php index 0675e42a..8fab5688 100644 --- a/agc_2-X/trunk/www/vicidial/help.php +++ b/agc_2-X/trunk/www/vicidial/help.php @@ -2794,7 +2794,7 @@ if ($SSqc_features_active > 0)

- - + -