From 5d78fd839120419ba7c0642f120313543af99b99 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Mon, 11 May 2015 18:19:01 +0300 Subject: Fix an undefined variable error from fbde2798688ab99cfe3fdd22746d60f0877b2c27 --- system/libraries/Image_lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php index 6374aacdd..ce6c42b02 100644 --- a/system/libraries/Image_lib.php +++ b/system/libraries/Image_lib.php @@ -1080,7 +1080,7 @@ class CI_Image_lib { $top = 0; $bottom = $height - 1; - while ($top < $botttom) + while ($top < $bottom) { $ct = imagecolorat($src_img, $i, $top); $cb = imagecolorat($src_img, $i, $bottom); -- cgit v1.2.3-24-g4f1b