From: Michael Date: Sat, 24 Feb 2024 17:37:30 +0000 (+0000) Subject: Round the load to two digits X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e52fa44d3f1ac15ed68e546721615c19c7b14629;p=friendica.git Round the load to two digits --- diff --git a/src/Core/System.php b/src/Core/System.php index df8cb9377e..b38076ad41 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -473,7 +473,7 @@ class System return false; } - return max($load_arr[0], $load_arr[1]); + return round(max($load_arr[0], $load_arr[1]), 2); } /**