removed change in status of vicidial_closer_log to DONE with improper call length. vdc_db_query.php

git-svn-id: svn://192.168.202.10@746 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2007-12-11 22:48:54 +00:00
parent d5adfbc726
commit f001015cc5
+1 -1
View File
@@ -1103,7 +1103,7 @@ if ($stage == "end")
$row=mysql_fetch_row($rslt);
if ($row[0] > 0)
{
$stmt = "UPDATE vicidial_closer_log set end_epoch='$StarTtime', length_in_sec='$length_in_sec',status='DONE' where lead_id='$lead_id' order by start_epoch desc limit 1;";
$stmt = "UPDATE vicidial_closer_log set end_epoch='$StarTtime', length_in_sec='$length_in_sec' where lead_id='$lead_id' order by start_epoch desc limit 1;";
if ($DB) {echo "$stmt\n";}
$rslt=mysql_query($stmt, $link);
}