]> granicus.if.org Git - php/commitdiff
Swap implode() argument order in the test helper
authorChristoph M. Becker <cmbecker69@gmx.de>
Fri, 12 Jul 2019 11:26:54 +0000 (13:26 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Fri, 12 Jul 2019 11:26:54 +0000 (13:26 +0200)
ext/standard/tests/file/windows_acls/common.inc

index 10edfe4c916244169ccf6229e2876d617384febb..b292745a6be1357f128daa5689264c3206942f80 100644 (file)
@@ -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);
        }
 }