diff --git a/interface/web/dashboard/dashlets/limits.php b/interface/web/dashboard/dashlets/limits.php
index 50bcad91222b13b1405cd0e85ae336051af1fb0c..2251fd80c299193c5bdfcb17f76983df03a084e1 100644
--- a/interface/web/dashboard/dashlets/limits.php
+++ b/interface/web/dashboard/dashlets/limits.php
@@ -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;
     }