ZF2-341: setDirUmask Exception
Description
Cache\Storage\Adapter\FilesystemOptions.php (Function: setDirUmask)
if ((~$umask & 0700) != 0700 ) { ^^this condition can't match?
it should be: if (($umask & 0700) != 0700 ) {
Cache\Storage\Adapter\FilesystemOptions.php (Function: setDirUmask)
if ((~$umask & 0700) != 0700 ) { ^^this condition can't match?
it should be: if (($umask & 0700) != 0700 ) {
Comments
Posted by Marc Bennewitz (private) (mabe) on 2012-07-09T11:07:21.000+0000
You are wrong because we are using umask not the permissions itself. -> Please read how umask work http://en.wikipedia.org/wiki/Umask