[fix] the total db account should be OK in global quotas view

This commit is contained in:
alban 2017-10-08 15:14:31 +02:00
parent a92331b34e
commit a990fca19f
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ echo "<br /><br />"; printf(_("If you want to manage them, go to")."&nbsp;<a hre
$tmptotaldb = $quota->get_size_db_sum_all(); // IN B
$totaldb=$quota->get_size_unit($tmptotaldb);
$tmptotaltotal=($tmptotalweb*1024)+($tmptotallist*1024)+$tmptotalmail+($tmptotaldb/1024); // IN B
$tmptotaltotal=($tmptotalweb*1024)+($tmptotallist*1024)+$tmptotalmail+$tmptotaldb; // IN B
$totaltotal=$quota->get_size_unit($tmptotaltotal);
$dc = $dom->count_domains_all();