Skip to content

Commit b79d75d

Browse files
committed
Merge pull request bcit-ci#2936 from ivantcholakov/develop
Image_lib - minor corrections on some comments.
2 parents 7cf682a + 7a0c08e commit b79d75d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

system/libraries/Image_lib.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ public function image_process_imagemagick($action = 'resize')
880880
return FALSE;
881881
}
882882

883-
// Set the file to 777
883+
// Set the file to 666
884884
@chmod($this->full_dst_path, 0666);
885885

886886
return TRUE;
@@ -1013,7 +1013,7 @@ public function image_rotate_gd()
10131013
imagedestroy($dst_img);
10141014
imagedestroy($src_img);
10151015

1016-
// Set the file to 777
1016+
// Set the file to 666
10171017
@chmod($this->full_dst_path, 0666);
10181018

10191019
return TRUE;
@@ -1086,7 +1086,7 @@ public function image_mirror_gd()
10861086
// Kill the file handles
10871087
imagedestroy($src_img);
10881088

1089-
// Set the file to 777
1089+
// Set the file to 666
10901090
@chmod($this->full_dst_path, 0666);
10911091

10921092
return TRUE;

0 commit comments

Comments
 (0)