mirror of
https://github.com/php/php-src.git
synced 2026-03-30 20:22:36 +02:00
Swap implode() argument order in the test helper
This commit is contained in:
@@ -123,7 +123,7 @@ function icacls_set($path, $mode, $perm) {
|
||||
exec($cmd);
|
||||
|
||||
$cmd = $icacls . ' ' . $path_escaped . ' /' . $mode . ' ' . $user;
|
||||
$cmd .= ':' . '(' . implode($perm_entry, ',') . ')';
|
||||
$cmd .= ':' . '(' . implode(',', $perm_entry) . ')';
|
||||
exec($cmd);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user