improve display of folder info (files / size)

This commit is contained in:
EV-soft 2021-05-27 16:33:20 +02:00 committed by GitHub
parent d9c67faa39
commit 4cb7f76dab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1944,7 +1944,6 @@ $tableTheme = (FM_THEME == "dark") ? "text-white bg-dark table-dark" : "bg-white
$arrInfo = fm_get_directorysize($path . '/' . $f);
$dirCount = $arrInfo[1];
$fileSize = $arrInfo[0];
// $filesize_raw = fm_get_directorysize($path . '/' . $f)[1].'/'.fm_get_directorysize($path . '/' . $f)[0];
$filesize = $dirCount. ' files / ' .fm_get_filesize($fileSize);
}
else {