diff options
author | Andrey Andreev <narf@devilix.net> | 2014-08-27 19:40:11 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-08-27 19:40:11 +0200 |
commit | 459657415189f4fe3f8d4eb05b209ab78409f9b0 (patch) | |
tree | dbf460e9df735ebb39757f6a7afab4f43c73da01 /system/libraries/Cache/drivers | |
parent | 487ccc9c8a21cb6338aab7173b3adda194d29c26 (diff) |
Fix #2963
Changed all file permissions settings throught the framework
and the documentation.
Also added configuration settings for CI_Log and CI_Image_lib
Diffstat (limited to 'system/libraries/Cache/drivers')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_file.php b/system/libraries/Cache/drivers/Cache_file.php index aa2e8fa38..29898040a 100644 --- a/system/libraries/Cache/drivers/Cache_file.php +++ b/system/libraries/Cache/drivers/Cache_file.php @@ -92,7 +92,7 @@ class CI_Cache_file extends CI_Driver { if (write_file($this->_cache_path.$id, serialize($contents))) { - @chmod($this->_cache_path.$id, 0660); + chmod($this->_cache_path.$id, 0640); return TRUE; } |