X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FSystem.php;h=b2da78f1b3509d9a2ff5f16d147d1efd42c45e3e;hb=f826ce70ceb9f810a16b70d3d77b9ba2c8d9097d;hp=8a8f273a8db7fdf2c9ef5402f22a4e19899f20fa;hpb=26e0469de77aeae2311e8b50b5e64b58a388ca01;p=friendica.git diff --git a/src/Core/System.php b/src/Core/System.php index 8a8f273a8d..b2da78f1b3 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -442,7 +442,7 @@ class System */ public static function getLoadAvg(): array { - if (is_readable('/proc/loadavg')) { + if (@is_readable('/proc/loadavg')) { $content = @file_get_contents('/proc/loadavg'); if (empty($content)) { $content = shell_exec('cat /proc/loadavg');