Fix-13911-occ-files-scan-elapsed-time

Signed-off-by: Joel S <joel.devbox@protonmail.com>
This commit is contained in:
Joel S 2019-02-22 19:59:03 +05:30
parent 2083103d0b
commit f29b092a76
1 changed files with 3 additions and 4 deletions

View File

@ -289,10 +289,9 @@ class Scan extends Base {
* @return string
*/
protected function formatExecTime() {
list($secs, ) = explode('.', sprintf("%.1f", $this->execTime));
# if you want to have microseconds add this: . '.' . $tens;
return date('H:i:s', $secs);
$secs = round($this->execTime);
# convert seconds into HH:MM:SS form
return sprintf('%02d:%02d:%02d', ($secs/3600),($secs/60%60), $secs%60);
}
/**