bug fix for last commit

This commit is contained in:
Rom Walton 2015-06-25 13:42:08 -04:00
parent e3bd34c4de
commit 4576f446a6
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ function batch_xml_to_object($batch) {
$b->credit_canonical = (double)($batch->credit_canonical);
$b->name = (string)($batch->name);
$b->app_name = (string)($batch->app_name);
$b->total_cpu_time = (string)($batch->total_cpu_time);
$b->total_cpu_time = (double)($batch->total_cpu_time);
return $b;
}