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

Merge branch '6544-dashboard-limit-shows-mb-of-unlimited' into 'develop'

Resolve "Dashboard Limit shows MB of Unlimited"

Closes #6544

See merge request !1772
parents a5326549 46fe7cb3
No related branches found
No related tags found
No related merge requests found
......@@ -222,7 +222,7 @@ class dashlet_limits
$quotaMB = $rec['number'] / 1048576;
} // Mail quota is in bytes, must be converted to MB
else {
$quotaMB = $rec['number'];
$quotaMB = $app->functions->intval($rec['number']);
}
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