From 7a0c08ec5c88a17d8096f3942493ce59766a445d Mon Sep 17 00:00:00 2001 From: Ivan Tcholakov Date: Thu, 13 Mar 2014 20:02:44 +0200 Subject: Image_lib - minor corrections on some comments. --- system/libraries/Image_lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'system/libraries') diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php index df0df3fec..f1339b57a 100644 --- a/system/libraries/Image_lib.php +++ b/system/libraries/Image_lib.php @@ -880,7 +880,7 @@ class CI_Image_lib { return FALSE; } - // Set the file to 777 + // Set the file to 666 @chmod($this->full_dst_path, 0666); return TRUE; @@ -1013,7 +1013,7 @@ class CI_Image_lib { imagedestroy($dst_img); imagedestroy($src_img); - // Set the file to 777 + // Set the file to 666 @chmod($this->full_dst_path, 0666); return TRUE; @@ -1086,7 +1086,7 @@ class CI_Image_lib { // Kill the file handles imagedestroy($src_img); - // Set the file to 777 + // Set the file to 666 @chmod($this->full_dst_path, 0666); return TRUE; -- cgit v1.2.3-24-g4f1b