summaryrefslogtreecommitdiffstats
path: root/system/libraries/Image_lib.php
diff options
context:
space:
mode:
authorIvan Tcholakov <ivantcholakov@gmail.com>2014-03-13 19:02:44 +0100
committerIvan Tcholakov <ivantcholakov@gmail.com>2014-03-13 19:02:44 +0100
commit7a0c08ec5c88a17d8096f3942493ce59766a445d (patch)
tree80e39383ca92ce4480c9768662b50c42ac90ca45 /system/libraries/Image_lib.php
parent7cf682abf46bcaa112b63c500a884ba25c0dd8b3 (diff)
Image_lib - minor corrections on some comments.
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r--system/libraries/Image_lib.php6
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;