commit | 5d78fd839120419ba7c0642f120313543af99b99 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Mon May 11 18:19:01 2015 +0300 |
committer | Andrey Andreev <narf@devilix.net> | Mon May 11 18:19:01 2015 +0300 |
tree | 55999f6c8281f53ad64286946a2b2d636f72a5b3 | |
parent | 89eda4914a64eb98ed0b7912f2bb8aa841f5c092 [diff] [blame] |
Fix an undefined variable error from fbde2798688ab99cfe3fdd22746d60f0877b2c27
diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php index 6374aac..ce6c42b 100644 --- a/system/libraries/Image_lib.php +++ b/system/libraries/Image_lib.php
@@ -1080,7 +1080,7 @@ $top = 0; $bottom = $height - 1; - while ($top < $botttom) + while ($top < $bottom) { $ct = imagecolorat($src_img, $i, $top); $cb = imagecolorat($src_img, $i, $bottom);