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
parent c55d3f5350
commit 190fc651ae
6 changed files with 98 additions and 96 deletions

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';
}
/**