Skip to content

Commit 46fe7cb

Browse files
author
Till Brehm
committed
Fixes #6544
1 parent a532654 commit 46fe7cb

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)