Changing conversion: 1 mb = 1024 kb

I found that quota is using MB as 1024 KB, but in vestacp, if you set quota for a package 1024 MB, it's showing you 1,02 GB inside the panel.

If you edit the package and add 1000 MB, it's showing correctly in the panel, 1GB, but quota is exceeded at 976 MB.

humanize_usage use 1000 MB as 1GB instead of 1024 MB, so I fixed it.
This commit is contained in:
demlasjr 2014-06-16 18:08:57 +02:00
commit 01357404bb

View file

@ -151,12 +151,12 @@ function humanize_time($usage) {
}
function humanize_usage($usage) {
if ( $usage > 1000 ) {
$usage = $usage / 1000;
if ( $usage > 1000 ) {
$usage = $usage / 1000 ;
if ( $usage > 1000 ) {
$usage = $usage / 1000 ;
if ( $usage > 1024 ) {
$usage = $usage / 1024;
if ( $usage > 1024 ) {
$usage = $usage / 1024 ;
if ( $usage > 1024 ) {
$usage = $usage / 1024 ;
$usage = number_format($usage, 2);
$usage = $usage."".__('pb');
} else {