minor variable fix in non-agent API

git-svn-id: svn://192.168.202.10@3344 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2021-01-19 18:39:31 +00:00
parent bf0d22b64a
commit 4e90e0b737
+1 -1
View File
@@ -13345,7 +13345,7 @@ if ($function == 'call_dispo_report')
$grand_total_calls=0; $grand_total_calls=0;
if (!$skip_outbound) if (!$skip_outbound)
{ {
$stmt="select campaign_id, status, count(*) from vicidial_log where call_date>='$query_date $query_time' and call_date<='$end_date $end_time' $ingroup_SQL $status_SQL $user_SQL group by campaign_id, status order by campaign_id, status asc"; $stmt="select campaign_id, status, count(*) from vicidial_log where call_date>='$query_date $query_time' and call_date<='$end_date $end_time' $campaign_SQL $status_SQL $user_SQL group by campaign_id, status order by campaign_id, status asc";
if ($DB) {$rpt_str.=$stmt."<BR>\n";} if ($DB) {$rpt_str.=$stmt."<BR>\n";}
$rslt=mysql_to_mysqli($stmt, $link); $rslt=mysql_to_mysqli($stmt, $link);
while ($row=mysqli_fetch_row($rslt)) while ($row=mysqli_fetch_row($rslt))