Ver código fonte

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.
demlasjr 11 anos atrás
pai
commit
01357404bb
1 arquivos alterados com 6 adições e 6 exclusões
  1. 6 6
      web/inc/main.php

+ 6 - 6
web/inc/main.php

@@ -151,12 +151,12 @@ function humanize_time($usage) {
 }
 }
 
 
 function humanize_usage($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 = number_format($usage, 2);
                     $usage = $usage."".__('pb');
                     $usage = $usage."".__('pb');
                 } else {
                 } else {