diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-10-13 16:32:48 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-10-13 16:32:48 +0200 |
commit | 172e16191889558ca6f6710cf34755200d3e6334 (patch) | |
tree | 9eb0b0fdea2529533a1ee02d6d0bccbf14f8dd96 /system/libraries/Output.php | |
parent | c1895834c410f04419febe83d29547201bbab7d0 (diff) |
numerous changes from DIR_WRITE_MODE to FILE_WRITE_MODE
chmod operations on files were using the DIR_ constant permisisons
Diffstat (limited to 'system/libraries/Output.php')
-rw-r--r-- | system/libraries/Output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Output.php b/system/libraries/Output.php index 4423ac726..0cf6739bd 100644 --- a/system/libraries/Output.php +++ b/system/libraries/Output.php @@ -331,7 +331,7 @@ class CI_Output { return; } fclose($fp); - @chmod($cache_path, DIR_WRITE_MODE); + @chmod($cache_path, FILE_WRITE_MODE); log_message('debug', "Cache file written: ".$cache_path); } |