mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
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:
parent
3b7eee4393
commit
01357404bb
1 changed files with 6 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue