From 8aa78659975ffecb2dbadd972e9acd69b04fb15c Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Fri, 12 Jul 2019 13:26:54 +0200 Subject: [PATCH] Swap implode() argument order in the test helper --- ext/standard/tests/file/windows_acls/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.50.1