2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

remove debugging

This commit is contained in:
Adam Zammit
2017-09-25 12:14:56 +10:00
parent 7735a90319
commit c43e54f81e

View File

@@ -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);
}