From f001015cc5a481580540d4b32e7a916189d19f79 Mon Sep 17 00:00:00 2001 From: mattf Date: Tue, 11 Dec 2007 22:48:54 +0000 Subject: [PATCH] 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 --- www/agc/vdc_db_query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/agc/vdc_db_query.php b/www/agc/vdc_db_query.php index 129af642..9c15f395 100644 --- a/www/agc/vdc_db_query.php +++ b/www/agc/vdc_db_query.php @@ -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); }