diff --git a/core/CliMulti/Process.php b/core/CliMulti/Process.php index 6c5ac165caf..15dc539e59c 100644 --- a/core/CliMulti/Process.php +++ b/core/CliMulti/Process.php @@ -213,7 +213,7 @@ private static function isProcFSMounted() } // Testing if /proc is a resource with @fopen fails on systems with open_basedir set. // by using stat we not only test the existance of /proc but also confirm it's a 'proc' filesystem - $type = shell_exec('stat -f -c "%T" /proc 2>/dev/null'); + $type = @shell_exec('stat -f -c "%T" /proc 2>/dev/null'); return strpos($type, 'proc') === 0; }