summaryrefslogtreecommitdiffstats
path: root/system/libraries/Image_lib.php
diff options
context:
space:
mode:
authorTed Wood <ted@thedigitalorchard.ca>2013-01-09 04:41:45 +0100
committerTed Wood <ted@thedigitalorchard.ca>2013-01-09 04:41:45 +0100
commit9cc707b8a5c726b7f2aa21b026dbf491a75e06c4 (patch)
treedffbe5654d767a3ff325cc1924d7c091d02f6939 /system/libraries/Image_lib.php
parent85adeed0ab67bcde7b5c57ddb44022c75e82078a (diff)
fix imagejpeg() parameter, should be NULL instead of empty string
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r--system/libraries/Image_lib.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php
index 54a134f50..6d5493696 100644
--- a/system/libraries/Image_lib.php
+++ b/system/libraries/Image_lib.php
@@ -1491,7 +1491,7 @@ class CI_Image_lib {
{
case 1 : imagegif($resource);
break;
- case 2 : imagejpeg($resource, '', $this->quality);
+ case 2 : imagejpeg($resource, NULL, $this->quality);
break;
case 3 : imagepng($resource);
break;