summaryrefslogtreecommitdiffstats
path: root/system/libraries
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-02-16 10:44:48 +0100
committerAndrey Andreev <narf@bofh.bg>2012-02-16 10:44:48 +0100
commita286c8a837422b5f582c3c391dc2805a500b1532 (patch)
tree137343e2c3f69510fef106b0a8148bddf5f71fe0 /system/libraries
parentdddf7189ea0ed0855d43c4090ffe0c7577ec7dc5 (diff)
parent827a92a6965612b185ae2e6766b6fb7740cd0cc2 (diff)
Merge upstream branch
Diffstat (limited to 'system/libraries')
-rw-r--r--system/libraries/Cache/drivers/Cache_file.php2
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;
}