Skip to content
Extraits de code Groupes Projets
Valider f080302d rédigé par mattab's avatar mattab
Parcourir les fichiers

Fixes #6314 do not display error Warning: shell_exec() [function.shell-exec]:...

Fixes #6314 do not display error Warning: shell_exec() [function.shell-exec]: Unable to execute 'stat -f -c "%T" /proc 2>/dev/null
parent 2e38d64d
Branches
Étiquettes
Aucune requête de fusion associée trouvée
......@@ -213,7 +213,7 @@ class Process
}
// 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;
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter