summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-07-12 13:26:54 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-07-12 13:26:54 +0200
commit8aa78659975ffecb2dbadd972e9acd69b04fb15c (patch)
tree5ab3b5979b4540f3b00f835f238b531c25e0e9a8
parente2c3bc80e3ac49443cb1b5f2a601db6186459f7a (diff)
downloadphp-git-8aa78659975ffecb2dbadd972e9acd69b04fb15c.tar.gz
Swap implode() argument order in the test helper
-rw-r--r--ext/standard/tests/file/windows_acls/common.inc2
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);
}
}