diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-16 18:47:11 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-16 18:47:11 +0100 |
commit | 9fcb7b64e519e17b3839b9598c598c431c4ed04a (patch) | |
tree | f663f16d5d73cbede2e05486d7d486e9052a921f /system/libraries | |
parent | e27216f88443775534e185e192996353d4958387 (diff) | |
parent | 827a92a6965612b185ae2e6766b6fb7740cd0cc2 (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebird
Diffstat (limited to 'system/libraries')
-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; } |