upload-limit v0.3 solved the multiple DB querys,uploadLimit in config

This commit is contained in:
Milos Holba
2020-11-12 17:46:23 +01:00
committed by Peter Papp
parent 8b8dc34ba6
commit 8fc7272e38
6 changed files with 98 additions and 96 deletions
+7 -4
View File
@@ -365,11 +365,14 @@ function format_megabytes($megabytes)
{
if ($megabytes >= 1000) {
return $megabytes / 1000 . 'GB';
} else if ($megabytes >= 1000000) {
return $megabytes / 1000000 . 'TB';
}else {
return $megabytes . 'MB';
}
if ($megabytes >= 1000000) {
return $megabytes / 1000000 . 'TB';
}
return $megabytes . 'MB';
}
/**