removed debug output

This commit is contained in:
Kim Hübel 2020-05-03 22:25:18 +01:00
parent 8f0a996a76
commit 9a81168911

View file

@ -1,7 +1,5 @@
<?php <?php
function format_time($seconds) { function format_time($seconds) {
echo gettype($seconds);
echo $seconds;
$secs = intval($seconds % 60); $secs = intval($seconds % 60);
$mins = intval($seconds / 60 % 60); $mins = intval($seconds / 60 % 60);
$hours = intval($seconds / 3600 % 24); $hours = intval($seconds / 3600 % 24);