diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-07-12 13:26:54 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-07-12 13:26:54 +0200 |
commit | 8aa78659975ffecb2dbadd972e9acd69b04fb15c (patch) | |
tree | 5ab3b5979b4540f3b00f835f238b531c25e0e9a8 | |
parent | e2c3bc80e3ac49443cb1b5f2a601db6186459f7a (diff) | |
download | php-git-8aa78659975ffecb2dbadd972e9acd69b04fb15c.tar.gz |
Swap implode() argument order in the test helper
-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); } } |