diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-02-16 10:46:12 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-02-16 10:46:12 +0100 |
commit | aac5e91ead82146d9a5076d324355162c71e0383 (patch) | |
tree | f8aacb53814260b161bd5f39e0c292d6ec47aed3 /system/libraries/Cache | |
parent | cf63120a60da9485ab1f94bc58b5d62e6b05a0fd (diff) | |
parent | 827a92a6965612b185ae2e6766b6fb7740cd0cc2 (diff) |
Merge upstream branch
Diffstat (limited to 'system/libraries/Cache')
-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 4a81b0422..a960730d7 100644 --- a/system/libraries/Cache/drivers/Cache_file.php +++ b/system/libraries/Cache/drivers/Cache_file.php @@ -99,7 +99,7 @@ class CI_Cache_file extends CI_Driver { if (write_file($this->_cache_path.$id, serialize($contents))) { - @chmod($this->_cache_path.$id, 0777); + @chmod($this->_cache_path.$id, 0660); return TRUE; } |