1
0
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:
Christoph M. Becker
2019-07-12 13:26:54 +02:00
parent e2c3bc80e3
commit 8aa7865997

View File

@@ -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);
}
}