forked from rocktronica/OneFileCMS
-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Description
Got asked by a friend yesterday what's wrong with the script, why isn't it working. So I checked it and found out that this array syntax seems not to work on PHP 5.2.17 (edit: supported from PHP 5.4.0):
$ugt = ['...', '..t', '.g.', '.gt', 'u..', 'u.t', 'ug.', 'ugt']; //SetUid SetGid sTicky $rwx = ['---', '--x', '-w-', '-wx', 'r--', 'r-x', 'rw-', 'rwx'];
I had to change it to this, to make the script working.
$ugt = array('...', '..t', '.g.', '.gt', 'u..', 'u.t', 'ug.', 'ugt'); //SetUid SetGid sTicky $rwx = array('---', '--x', '-w-', '-wx', 'r--', 'r-x', 'rw-', 'rwx');
Created a Pull Request for this issue #53
Metadata
Metadata
Assignees
Labels
No labels