diff options
-rw-r--r-- | ext/standard/tests/file/windows_acls/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/file/windows_acls/common.inc b/ext/standard/tests/file/windows_acls/common.inc index 10edfe4c91..b292745a6b 100644 --- a/ext/standard/tests/file/windows_acls/common.inc +++ b/ext/standard/tests/file/windows_acls/common.inc @@ -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); } } |