From b2d5a4888ef633e72174fae18d7785166617018e Mon Sep 17 00:00:00 2001 From: mattf Date: Mon, 14 Oct 2019 22:34:59 +0000 Subject: [PATCH] Additional PHP7 fixes for admin.php git-svn-id: svn://192.168.202.10@3147 3d104415-ff17-0410-8863-d5cf3c621b8a --- www/vicidial/admin.php | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/www/vicidial/admin.php b/www/vicidial/admin.php index b5c06917..2af6c4f9 100644 --- a/www/vicidial/admin.php +++ b/www/vicidial/admin.php @@ -4524,12 +4524,13 @@ else # 190724-1603 - Added sip_event_logging campaign actions # 190902-0839 - Fixes for PHP 7.2 # 190930-2110 - More PHP7 fixes +# 191014-1816 - Additional PHP7 fixes # # make sure you have added a user to the vicidial_users MySQL table with at least user_level 9 to access this page the first time -$admin_version = '2.14-719a'; -$build = '190930-2110'; +$admin_version = '2.14-720a'; +$build = '191014-1816'; $STARTtime = date("U"); $SQLdate = date("Y-m-d H:i:s"); @@ -17636,7 +17637,7 @@ if ($ADD==411111111111111) echo "
"._QXZ("SYSTEM SETTINGS MODIFIED")."\n"; $k=0; - $multi_count = count($reports_use_slave_db); + if (is_array($reports_use_slave_db)) {$multi_count = count($reports_use_slave_db);} else {$multi_count=0;} $multi_array = $reports_use_slave_db; while ($k < $multi_count) { @@ -17646,7 +17647,7 @@ if ($ADD==411111111111111) $reports_use_slave_db = preg_replace("/,$/","",$new_field_value); $m=0; - $altlog_count = count($tables_use_alt_log_db); + if (is_array($tables_use_alt_log_db)) {$altlog_count = count($tables_use_alt_log_db);} else {$altlog_count=0;} $altlog_array = $tables_use_alt_log_db; while ($m < $altlog_count) { @@ -17664,9 +17665,12 @@ if ($ADD==411111111111111) $custom_reports_slave_SQL=''; if (mysqli_num_rows($custom_rslt)>0) { - for ($q=0; $q 0) { - if ( ($complete_total < 1) or ($lead_list[count] < 1) ) + if ( ($complete_total < 1) or ($lead_list['count'] < 1) ) {$total_complete_pct = "0";} else - {$total_complete_pct = intval(($complete_total / $lead_list[count]) * 100);} + {$total_complete_pct = intval(($complete_total / $lead_list['count']) * 100);} echo ""._QXZ("SUBTOTALS")."$lead_list[Y_count]$lead_list[N_count]     \n"; echo ""._QXZ("TOTAL")."$lead_list[count]$dialable_total $total_complete_pct%   \n"; }