From: Christoph M. Becker Date: Fri, 12 Jul 2019 11:26:54 +0000 (+0200) Subject: Swap implode() argument order in the test helper X-Git-Tag: php-7.4.0beta1~147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8aa78659975ffecb2dbadd972e9acd69b04fb15c;p=php Swap implode() argument order in the test helper --- 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); } }