diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index e8f0ac3452..4fa87f70cb 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -324,7 +324,7 @@ function human_milliseconds_to_string($seconds) } // get the seconds - $seconds = (intval($seconds / 100) % 60); + $seconds = ((intval($seconds) / 100) % 60); if ($seconds > 0) { $ret .= "$seconds seconds"; }