Skip to content

Commit e238c89

Browse files
arsonikfabpot
authored andcommitted
Fix missing $extraDirs when open_basedir returns
1 parent 7a3060a commit e238c89

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Symfony/Component/Process/ExecutableFinder.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ public function addSuffix($suffix)
5151
public function find($name, $default = null, array $extraDirs = [])
5252
{
5353
if (ini_get('open_basedir')) {
54-
$searchPath = explode(PATH_SEPARATOR, ini_get('open_basedir'));
54+
$searchPath = array_merge(
55+
explode(PATH_SEPARATOR, ini_get('open_basedir')),
56+
$extraDirs
57+
);
5558
$dirs = [];
5659
foreach ($searchPath as $path) {
5760
// Silencing against https://bugs.php.net/69240

0 commit comments

Comments
 (0)