Skip to content

Commit 476b8e8

Browse files
author
Till Brehm
committed
Merge branch '6544-dashboard-limit-shows-mb-of-unlimited' into 'develop'
Resolve "Dashboard Limit shows MB of Unlimited" Closes #6544 See merge request ispconfig/ispconfig3!1772
2 parents a532654 + 46fe7cb commit 476b8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/dashboard/dashlets/limits.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public function _get_assigned_quota($limit)
222222
$quotaMB = $rec['number'] / 1048576;
223223
} // Mail quota is in bytes, must be converted to MB
224224
else {
225-
$quotaMB = $rec['number'];
225+
$quotaMB = $app->functions->intval($rec['number']);
226226
}
227227
return $quotaMB;
228228
}

0 commit comments

Comments
 (0)