Skip to content

Commit 8aa7865

Browse files
committed
Swap implode() argument order in the test helper
1 parent e2c3bc8 commit 8aa7865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/file/windows_acls/common.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function icacls_set($path, $mode, $perm) {
123123
exec($cmd);
124124

125125
$cmd = $icacls . ' ' . $path_escaped . ' /' . $mode . ' ' . $user;
126-
$cmd .= ':' . '(' . implode($perm_entry, ',') . ')';
126+
$cmd .= ':' . '(' . implode(',', $perm_entry) . ')';
127127
exec($cmd);
128128
}
129129
}

0 commit comments

Comments
 (0)