From c43e54f81ededcf2cbc44946d47121bd835437a2 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 25 Sep 2017 12:14:56 +1000 Subject: [PATCH] remove debugging --- functions/functions.performance.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/functions/functions.performance.php b/functions/functions.performance.php index dc43c6f1..8eeb258d 100644 --- a/functions/functions.performance.php +++ b/functions/functions.performance.php @@ -298,7 +298,6 @@ function get_stats_by_time($start,$end,$byoperator = true) */ function sec_to_time($seconds) { - var_dump($seconds); $h = 0; $m = 0; if($seconds >= 3600){ @@ -311,10 +310,6 @@ function sec_to_time($seconds) } $s = floor($seconds); - var_dump($h); - var_dump($m); - var_dump($s); - return sprintf("%02d:%02d:%02d", $h, $m, $s); }