diff options
author | Andrey Andreev <narf@devilix.net> | 2014-03-13 19:18:03 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-03-13 19:18:03 +0100 |
commit | b79d75d21fc9438679ed0552b8cd4042db80b8f6 (patch) | |
tree | 80e39383ca92ce4480c9768662b50c42ac90ca45 /system/libraries/Image_lib.php | |
parent | 7cf682abf46bcaa112b63c500a884ba25c0dd8b3 (diff) | |
parent | 7a0c08ec5c88a17d8096f3942493ce59766a445d (diff) |
Merge pull request #2936 from ivantcholakov/develop
Image_lib - minor corrections on some comments.
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r-- | system/libraries/Image_lib.php | 6 |
1 files changed, 3 insertions, 3 deletions
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; |