Merge branch 'ent-11694-15885-perdida-visibilidad-modulos-por-timeticks' into 'develop'

Ent 11694 15885 perdida visibilidad modulos por timeticks

See merge request artica/pandorafms!6214
This commit is contained in:
Rafael Ameijeiras 2023-08-04 09:36:08 +00:00
commit 246b4f9765
1 changed files with 1 additions and 1 deletions

View File

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