From 172e16191889558ca6f6710cf34755200d3e6334 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 13 Oct 2009 14:32:48 +0000 Subject: numerous changes from DIR_WRITE_MODE to FILE_WRITE_MODE chmod operations on files were using the DIR_ constant permisisons --- system/database/DB_cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/database') diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php index 8b0ad4fb4..f01bc8212 100644 --- a/system/database/DB_cache.php +++ b/system/database/DB_cache.php @@ -146,7 +146,7 @@ class CI_DB_Cache { return FALSE; } - @chmod($dir_path.$filename, DIR_WRITE_MODE); + @chmod($dir_path.$filename, FILE_WRITE_MODE); return TRUE; } -- cgit v1.2.3-24-g4f1b