Round the load to two digits

This commit is contained in:
Michael 2024-02-24 17:37:30 +00:00
parent f74d6f9ebb
commit e52fa44d3f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**