Skip to content
Snippets Groups Projects
Commit 46fe7cb3 authored by Till Brehm's avatar Till Brehm
Browse files

Fixes #6544

parent a5326549
No related branches found
No related tags found
No related merge requests found
...@@ -222,7 +222,7 @@ class dashlet_limits ...@@ -222,7 +222,7 @@ class dashlet_limits
$quotaMB = $rec['number'] / 1048576; $quotaMB = $rec['number'] / 1048576;
} // Mail quota is in bytes, must be converted to MB } // Mail quota is in bytes, must be converted to MB
else { else {
$quotaMB = $rec['number']; $quotaMB = $app->functions->intval($rec['number']);
} }
return $quotaMB; return $quotaMB;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment