summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/drivers/Cache_file.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-02-28 13:48:55 +0100
committerAndrey Andreev <narf@bofh.bg>2012-02-28 13:48:55 +0100
commit575bbfe97e4f0e3ad88558454fb2c87d372a7651 (patch)
treeeec271f209f8a7539b3b519be3a68e067f24562a /system/libraries/Cache/drivers/Cache_file.php
parentd33e24c2a649420d420ad9b11efb1bbf2421114c (diff)
parent0aa8c60ae7eee0122c42ae17d42fd5471a575743 (diff)
Merge remote-tracking branch 'upstream/develop' into develop-db-sqlite
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_file.php')
-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;
}