1
0
Fork 0

Avoid open_basedir warnings on is_dir() calls when probing for CABundle

pull/5177/head
Jordi Boggiano 2016-04-11 08:45:25 +01:00
parent 40c14709f7
commit e2056499cb
1 changed files with 1 additions and 1 deletions

View File

@ -915,7 +915,7 @@ class RemoteFilesystem
foreach ($caBundlePaths as $caBundle) {
$caBundle = dirname($caBundle);
if (is_dir($caBundle) && glob($caBundle.'/*')) {
if (Silencer::call('is_dir', $caBundle) && glob($caBundle.'/*')) {
return $caPath = $caBundle;
}
}