From e52fa44d3f1ac15ed68e546721615c19c7b14629 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 24 Feb 2024 17:37:30 +0000 Subject: [PATCH] Round the load to two digits --- src/Core/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /**