minor bug fix in cleanup script

git-svn-id: svn://192.168.202.10@1280 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2009-12-16 08:14:11 +00:00
parent 426976758a
commit e7726673c3
+3 -3
View File
@@ -373,7 +373,7 @@ if ($enable_queuemetrics_logging > 0)
{
@aryA = $sthA->fetchrow_array;
$queue_position = $aryA[0];
$queue_seconds = floor($aryA[1] + .5);
$queue_seconds = int($aryA[1] + .5);
}
$sthA->finish();
@@ -881,7 +881,7 @@ if ($enable_queuemetrics_logging > 0)
{
@aryA = $sthA->fetchrow_array;
$queue_position = $aryA[0];
$queue_seconds = floor($aryA[1] + .5);
$queue_seconds = int($aryA[1] + .5);
}
$sthA->finish();
@@ -995,7 +995,7 @@ if ($enable_queuemetrics_logging > 0)
{
@aryA = $sthA->fetchrow_array;
$queue_position = $aryA[0];
$queue_seconds = floor($aryA[1] + .5);
$queue_seconds = int($aryA[1] + .5);
}
$sthA->finish();