summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index 0000fa7..18a4b4d 100644
--- a/index.php
+++ b/index.php
@@ -229,7 +229,8 @@ if($w < 0)
$w = $w * 60;
Header("X-BS-Throttle: $w");
-header(sprintf('X-BS-Buildtime: %d', $buildtime_total));
+$buildtime_total = $buildtime_total / 60;
+header(sprintf('X-BS-Buildtime: %d', round($buildtime_total)));
$buildtime_avg = round($buildtime_total / $build_count, 2);
header(sprintf('X-BS-Buildtime-Average: %5.2f', $buildtime_avg));
?>