ZF-11633: Zend_Cache_Backend_File default umask for files
Description
The documentation states that 0700 is the default umask for the cache files.
cache_file_umask Integer 0700 umask for cache files
The class instead states that 0600 is the default:
protected $_options = array(
'cache_file_umask' => 0600
);
Whatever is right, 0600 i guess, should be put in the documentation.
Comments
Posted by Christoph Roensch (croensch) on 2011-08-02T06:49:55.000+0000
Zend_Cache_Backend_Static too. The diff will patch both.
Posted by Ramon Henrique Ornelas (ramon) on 2011-09-03T19:17:32.000+0000
Fix in trunk r24434 merged to branch 1.11 r24435.